14 lines
286 B
JSON
14 lines
286 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"strict": true,
|
|
"outDir": "dist-electron",
|
|
"rootDir": "electron",
|
|
"esModuleInterop": true,
|
|
"types": ["node", "electron"]
|
|
},
|
|
"include": ["electron"]
|
|
}
|