mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
32 lines
676 B
JSON
32 lines
676 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,
|
|
},
|
|
"include": [
|
|
"./electron/**/*"
|
|
]
|
|
}
|
|
|