This commit is contained in:
lblblong
2021-10-13 15:55:10 +08:00
parent 1da3199db2
commit e503d77cf5
42 changed files with 16720 additions and 13029 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"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"]
}