electron-vite-vue/tsconfig.json

25 lines
502 B
JSON
Raw Normal View History

2020-08-16 20:42:52 +08:00
{
"compilerOptions": {
2021-02-17 22:27:40 +08:00
"target": "ESNext",
2021-02-18 18:07:13 +08:00
"module": "CommonJS",
2020-08-16 20:42:52 +08:00
"moduleResolution": "node",
"importHelpers": true,
2021-02-17 22:27:40 +08:00
"jsx": "preserve",
2020-08-16 20:42:52 +08:00
"esModuleInterop": true,
2020-12-24 10:17:27 +08:00
"resolveJsonModule": true,
2020-08-16 20:42:52 +08:00
"sourceMap": true,
"baseUrl": "./",
"strict": true,
"paths": {
2021-05-15 20:57:32 +08:00
"@render/*": ["src/render/*"],
"@main/*": ["src/main/*"],
2021-05-15 20:57:32 +08:00
"@src/*": ["src/*"],
"@root/*": ["./*"]
2020-08-16 20:42:52 +08:00
},
"allowSyntheticDefaultImports": true
},
"include": [
2021-02-18 16:11:08 +08:00
"src"
2020-08-16 20:42:52 +08:00
]
}