chore: Update tsconfig.app.json to exclude test files and enable skipDefaultLibCheck
All checks were successful
CI / cache-and-install (push) Successful in 1m18s

This commit is contained in:
严浩
2024-08-13 10:01:48 +08:00
parent a4ea4e509f
commit 8282322d58

View File

@ -8,21 +8,17 @@
"./components.d.ts",
"env.d.ts",
"src/**/*",
"src/**/*.vue",
],
"exclude": [
"src/**/__tests__/*"
"src/**/*.vue"
],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
// "skipLibCheck": false,
"skipDefaultLibCheck": false,
"moduleResolution": "Bundler",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
"@/*": ["./src/*"]
}
}
}
}