canteen_system/tsconfig.app.json

28 lines
519 B
JSON
Raw Permalink Normal View History

2025-04-28 14:13:49 +08:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
2025-05-13 16:26:43 +08:00
"include": [
"src/**/*",
"src/**/*.vue",
"src/**/*.d.ts"
],
"exclude": [
"src/**/__tests__/*",
"node_modules",
"dist",
"management"
],
2025-04-28 14:13:49 +08:00
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"paths": {
2025-05-13 16:26:43 +08:00
"@/*": [
"./src/*"
]
2025-04-28 14:13:49 +08:00
},
"jsx": "preserve",
"jsxImportSource": "vue",
"verbatimModuleSyntax": true,
2025-05-13 16:26:43 +08:00
"types": [
"naive-ui/volar.d.ts"
]
2025-04-28 14:13:49 +08:00
}
2025-05-13 16:26:43 +08:00
}