mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 11:56:36 +08:00
23 lines
425 B
JSON
23 lines
425 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"importHelpers": true,
|
||
|
"jsx": "react",
|
||
|
"esModuleInterop": true,
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": "./",
|
||
|
"strict": true,
|
||
|
"paths": {
|
||
|
"@/*": ["src/render/*"],
|
||
|
"root/*": ["/*"]
|
||
|
},
|
||
|
"allowSyntheticDefaultImports": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*",
|
||
|
"typings/*.d.ts"
|
||
|
]
|
||
|
}
|