it-tools/tsconfig.app.json

15 lines
373 B
JSON
Raw Normal View History

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