ITZX-Clubs-Home-Web/tsconfig.app.json

19 lines
472 B
JSON
Raw Normal View History

2024-04-07 17:35:03 +08:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"noImplicitAny": true,
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
2024-04-07 17:35:03 +08:00
},
2024-12-22 11:02:50 +08:00
"noEmit": true,
2024-04-07 17:35:03 +08:00
"types": ["unplugin-icons/types/vue"],
"jsx": "preserve",
"jsxImportSource": "vue"
}
}