16 lines
361 B
JSON
16 lines
361 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"allowImportingTsExtensions": false,
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"noEmit": false,
|
||
|
|
"outDir": "dist/electron",
|
||
|
|
"rootDir": "electron",
|
||
|
|
"target": "ES2022",
|
||
|
|
"types": ["node"],
|
||
|
|
"verbatimModuleSyntax": false
|
||
|
|
},
|
||
|
|
"include": ["electron/**/*.ts"]
|
||
|
|
}
|