main-web/tsconfig.json

26 lines
594 B
JSON
Raw Normal View History

2024-03-14 03:30:18 +00:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"allowJs": true,
"skipLibCheck": true,
2025-09-10 02:07:12 +00:00
"lib": ["ES2018", "DOM", "DOM.Iterable"],
2024-03-14 03:30:18 +00:00
"paths": {
"@/*": ["./src/*"],
"services/*": ["src/services/*"],
"utils/*": ["src/utils/*"],
"components/*": ["src/components/*"],
"hooks/*": ["src/hooks/*"],
"filters/*": ["src/filters/*"]
}
},
"references": [
{
"path": "./tsconfig.vite-config.json"
}
],
2025-09-10 02:07:12 +00:00
"exclude": ["node_modules"]
2024-03-14 03:30:18 +00:00
}