23 lines
371 B
JSON
23 lines
371 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "ES2022",
|
|
"outDir": "dist/electron",
|
|
"rootDir": "electron",
|
|
"lib": ["ES2022"],
|
|
"jsx": "react"
|
|
},
|
|
"include": [
|
|
"electron/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src",
|
|
".next",
|
|
"out"
|
|
]
|
|
}
|