it-tools/tsconfig.app.json

14 lines
283 B
JSON
Raw Normal View History

2022-03-31 06:33:29 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
2022-04-04 06:24:45 +08:00
"lib": ["ES2021"],
2022-03-31 06:33:29 +08:00
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}