25 lines
656 B
JSON
25 lines
656 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2018",
|
|
"module": "CommonJS",
|
|
"lib": ["dom", "esnext"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"jsx": "react",
|
|
"strict": true,
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src", "assets/assets.d.ts"],
|
|
"exclude": ["src/electron.js"]
|
|
}
|