mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-05-07 06:02:56 +08:00
29 lines
897 B
JSON
29 lines
897 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "ESNext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"types": ["node"],
|
|
"typeRoots": ["./node_modules/@types", "./src/universal/types/"],
|
|
"paths": {
|
|
"@/*": ["./src/renderer/*"],
|
|
"~/*": ["./src/main/*"],
|
|
"root/*": ["./*"],
|
|
"#/*": ["./src/universal/*"],
|
|
"apis/*": ["./src/main/apis/*"],
|
|
"@core/*": ["./src/main/apis/core/*"]
|
|
},
|
|
"lib": ["ESNext", "dom", "dom.iterable", "ScriptHost"]
|
|
},
|
|
"include": ["./src/**/*.ts", "./src/**/*.vue", "./src/**/*.d.ts", "./tests/**/*.ts", "./electron.vite.config.*"],
|
|
"exclude": ["./node_modules", "./dist", "./out"]
|
|
}
|