Files
nat-utools/packages/preload/tsconfig.json
T
2021-10-13 15:55:10 +08:00

34 lines
831 B
JSON

{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"strict": false,
"noImplicitAny": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"charset": "utf8",
"allowJs": false,
"pretty": true,
"noEmitOnError": false,
"noUnusedLocals": false,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"inlineSourceMap": true,
"importHelpers": true,
"outDir": "dist",
"sourceMap": false,
"esModuleInterop": true,
"types": [
"utools-helper/@types/utools",
"utools-helper/@types/electron",
"@types/node"
]
},
"include": ["src"]
}