{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}
I encountered an issue with the first brace in this code snippet:
An error stating that 'importsNotUsedAsValues' is deprecated and will no longer work in TypeScript 5.5 appeared. To resolve, specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error. It is recommended to use 'verbatimModuleSyntax' instead.
Any ideas on how to address this error?