it-tools/tsconfig.app.json

15 lines
373 B
JSON
Raw Normal View History

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