mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 06:38:13 -05:00
59 lines
1.0 KiB
JSON
59 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"webpack-env"
|
|
],
|
|
"typeRoots": [
|
|
"./src/universal/types/*",
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"src/renderer/*"
|
|
],
|
|
"~/*": [
|
|
"src/*"
|
|
],
|
|
"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"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|