electron-vite-vue/tsconfig.json

25 lines
475 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-07-19 08:47:16 +08:00
"module": "ESNext",
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-09-09 09:36:06 +08:00
"@root/*": ["./*"],
"@/*": ["src/*"]
2020-08-16 20:42:52 +08:00
},
"allowSyntheticDefaultImports": true
2021-07-19 08:47:16 +08:00
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
2021-06-23 10:58:52 +08:00
}
2020-08-16 20:42:52 +08:00
}