mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-01-25 20:50:26 +08:00
23 lines
580 B
JSON
23 lines
580 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"strictFunctionTypes": false,
|
|
"experimentalDecorators": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true
|
|
},
|
|
// "files": [],
|
|
"include": ["src/**/*.ts"],
|
|
"references": [{
|
|
"path": "./tsconfig.app.json"
|
|
}]
|
|
}
|