electron-vite-vue/tsconfig.node.json

16 lines
343 B
JSON
Raw Normal View History

2022-06-13 22:10:18 +08:00
{
"compilerOptions": {
2022-07-21 13:17:06 +08:00
"target": "ESNext",
2022-06-13 22:10:18 +08:00
"composite": true,
"module": "ESNext",
2022-06-25 10:46:13 +08:00
"moduleResolution": "Node",
"jsx": "preserve",
2022-06-25 10:46:13 +08:00
"resolveJsonModule": true,
2022-08-27 06:38:15 +08:00
"allowSyntheticDefaultImports": true,
"types": [
"vite-plugin-electron/electron-env"
]
2022-08-29 07:43:02 +08:00
},
"include": ["package.json", "electron", "src"]
2022-06-13 22:10:18 +08:00
}