edu/admin/tsconfig.json

24 lines
395 B
JSON
Raw Normal View History

2022-04-08 02:42:44 +00:00
{
2022-08-12 10:44:09 +00:00
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"global.d.ts",
"src/**/*",
"src/**/*.vue",
"components.d.ts",
"auto-imports.d.ts",
"typings/**/*.d.ts"
],
2022-04-08 02:42:44 +00:00
"compilerOptions": {
2022-08-12 10:44:09 +00:00
"isolatedModules": true,
"baseUrl": ".",
2022-04-08 02:42:44 +00:00
"paths": {
2022-08-12 10:44:09 +00:00
"@/*": ["./src/*"]
}
2022-04-08 02:42:44 +00:00
},
2022-08-12 10:44:09 +00:00
"references": [
{
"path": "./tsconfig.config.json"
}
]
2022-04-08 02:42:44 +00:00
}