2022-01-26 18:46:54 +08:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "CommonJS",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitOverride": true,
|
2022-02-09 11:48:23 +08:00
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"experimentalDecorators": true,
|
2022-01-26 18:46:54 +08:00
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noImplicitReturns": true,
|
2022-02-09 11:48:23 +08:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"esModuleInterop": true
|
2022-01-26 18:46:54 +08:00
|
|
|
},
|
2022-02-09 11:48:23 +08:00
|
|
|
// "files": [],
|
|
|
|
"include": ["src/**/*.ts"],
|
|
|
|
"references": [{
|
|
|
|
"path": "./tsconfig.app.json"
|
|
|
|
}]
|
2022-01-26 18:46:54 +08:00
|
|
|
}
|