Files
PicList/tsconfig.json
2025-07-31 17:37:30 +08:00

62 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "ESNext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"node"
],
"typeRoots": [
"./node_modules/@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/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"electron.vite.config.*"
],
"exclude": [
"node_modules",
"dist",
"out"
]
}