catchAdmin/tsconfig.json

44 lines
865 B
JSON
Raw Permalink Normal View History

2022-12-05 23:01:12 +08:00
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"allowJs": true,
"lib": [
"esnext",
"dom"
],
"skipLibCheck": true,
// "types": ["element-plus/golbal"],
"paths": {
"@/*": [
2023-03-11 10:14:55 +08:00
"resources/*"
2022-12-05 23:01:12 +08:00
],
"/admin/*": [
"resources/admin/*"
]
}
},
"include": [
2023-03-11 10:14:55 +08:00
"resources/admin/**/*.ts",
"resources/admin/**/*.d.ts",
"resources/admin/**/*.tsx",
"resources/admin/**/*.vue",
"resources/admin/**/*.js",
"resources/admin/env.d.ts"
2022-12-05 23:01:12 +08:00
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}