19 lines
422 B
JSON
19 lines
422 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist/dev",
|
|
"rootDir": "./src/electron",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/electron"],
|
|
"references": [
|
|
{ "path": "./tsconfig.app.json"},
|
|
{ "path": "./tsconfig.node.json"}
|
|
]
|
|
}
|