mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-15 04:02:10 +08:00
36 lines
742 B
JSON
36 lines
742 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"useDefineForClassFields": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"],
|
|
"esModuleInterop": true,
|
|
|
|
// "allowJs": true,
|
|
// "checkJs": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "node", // node
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
//"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
//"outDir": "../public/electron"
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"tsconfig.json"
|
|
],
|
|
}
|
|
|