it-tools/tsconfig.app.json

15 lines
373 B
JSON
Raw Permalink Normal View History

2022-03-31 00:33:29 +02:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
2022-04-15 16:11:25 +02:00
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "**/*.d.ts", "node_modules/vite-plugin-pwa/client.d.ts"],
2022-03-31 00:33:29 +02:00
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
2022-04-04 00:24:45 +02:00
"lib": ["ES2021"],
2022-03-31 00:33:29 +02:00
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
2022-04-15 23:10:47 +02:00
},
2023-03-01 23:35:17 +01:00
"types": ["naive-ui/volar"]
2022-03-31 00:33:29 +02:00
}
}