2021-09-14 14:50:57 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"incremental": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"lib": ["ES2018", "dom"],
|
|
|
|
"target": "ES2018",
|
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": false,
|
2021-09-14 16:13:29 +08:00
|
|
|
"outDir": "./dist"
|
2021-09-14 14:50:57 +08:00
|
|
|
},
|
2021-09-14 16:13:29 +08:00
|
|
|
"compileOnSave": false,
|
2021-09-15 04:23:45 +08:00
|
|
|
"include": ["./src"],
|
2021-12-05 22:16:28 +08:00
|
|
|
"exclude": ["./src/python/setup-python", "src/msvc-dev-cmd/msvc-dev-cmd"]
|
2021-09-14 14:50:57 +08:00
|
|
|
}
|