mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 20:07:06 +08:00
25 lines
502 B
JSON
25 lines
502 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@render/*": ["src/render/*"],
|
|
"@main/*": ["src/main/*"],
|
|
"@src/*": ["src/*"],
|
|
"@root/*": ["./*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|