1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-01-26 21:20:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

23 lines
580 B
JSON
Raw Normal View History

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
}