mirror of https://github.com/buster-so/buster.git
20 lines
551 B
JSON
20 lines
551 B
JSON
{
|
|
"extends": "@buster/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "dist/.cache/tsbuildinfo.json",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"jsx": "react-jsx",
|
|
"lib": ["ESNext", "DOM"],
|
|
"declarationDir": "dist",
|
|
"emitDeclarationOnly": true,
|
|
"paths": {
|
|
"@/hooks/*": ["./src/hooks/*"],
|
|
"@/lib/*": ["./src/lib/*"]
|
|
},
|
|
"exactOptionalPropertyTypes": false
|
|
},
|
|
"include": ["src/**/*", "env.d.ts"],
|
|
"exclude": ["node_modules", "dist", "tests", "**/*.test.ts", "**/*.spec.ts"]
|
|
}
|