mirror of https://github.com/buster-so/buster.git
22 lines
592 B
JSON
22 lines
592 B
JSON
{
|
|||
"$schema": "https://json.schemastore.org/tsconfig",
|
|||
"compilerOptions": {
|
|||
"allowImportingTsExtensions": false,
|
|||
"composite": true,
|
|||
"declaration": true,
|
|||
"declarationMap": true,
|
|||
"esModuleInterop": true,
|
|||
"incremental": true,
|
|||
"inlineSources": false,
|
|||
"isolatedModules": true,
|
|||
"module": "ESNext",
|
|||
"moduleResolution": "bundler",
|
|||
"noEmit": false,
|
|||
"preserveWatchOutput": true,
|
|||
"skipLibCheck": true,
|
|||
"target": "ESNext"
|
|||
},
|
|||
"exclude": ["node_modules", "dist", "tests", "**/*.test.ts", "**/*.spec.ts"],
|
|||
"extends": "./type-checking.json"
|
|||
}
|