2022-03-13 14:40:38 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"useDefineForClassFields": true,
|
2023-03-03 03:12:27 +08:00
|
|
|
"lib": [
|
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable",
|
|
|
|
"ESNext"
|
|
|
|
],
|
2022-03-13 14:40:38 +08:00
|
|
|
"allowJs": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2022-03-29 16:52:53 +08:00
|
|
|
"jsx": "react-jsx",
|
2022-08-03 23:48:39 +08:00
|
|
|
"baseUrl": "../",
|
2022-03-29 16:52:53 +08:00
|
|
|
"paths": {
|
2023-03-03 03:12:27 +08:00
|
|
|
"@/*": [
|
|
|
|
"./*"
|
|
|
|
]
|
2022-08-22 16:51:23 +08:00
|
|
|
},
|
2023-03-03 03:12:27 +08:00
|
|
|
"types": [
|
|
|
|
"vite-plugin-svg-icons/client"
|
|
|
|
]
|
2022-03-13 14:40:38 +08:00
|
|
|
},
|
2023-03-03 03:12:27 +08:00
|
|
|
"include": [
|
|
|
|
"./**/*.ts",
|
|
|
|
"./**/*.tsx",
|
|
|
|
"../shared/**/*.ts"
|
|
|
|
]
|
2022-03-13 14:40:38 +08:00
|
|
|
}
|