24 lines
528 B
JSON
24 lines
528 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "../dist-electron",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"*": ["../node_modules/*"]
|
|
},
|
|
"types": ["node", "electron"]
|
|
},
|
|
"include": ["./**/*.ts", "./**/*.cts"],
|
|
"exclude": ["../src"]
|
|
}
|