vulpine-fe/tsconfig.app.json

15 lines
290 B
JSON
Raw Permalink Normal View History

2023-12-19 17:40:02 +01:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"noEmit": true,
2023-12-20 22:26:25 +01:00
"jsxImportSource": "vue",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
2023-12-19 17:40:02 +01:00
}