KenkoDriveVue/tsconfig.app.json

22 lines
412 B
JSON
Raw Normal View History

2023-06-22 23:46:14 +08:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
2024-03-16 22:50:45 +08:00
"include": [
"env.d.ts",
"src/**/*",
"auto-imports.d.ts",
2024-05-22 20:24:16 +08:00
"components.d.ts",
"typed-router.d.ts"
2024-03-16 22:50:45 +08:00
],
2023-06-22 23:46:14 +08:00
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
2024-05-08 16:33:03 +08:00
"noImplicitAny": false,
"allowJs": true,
"verbatimModuleSyntax": true,
2023-06-22 23:46:14 +08:00
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}