sonar.javascript.lcov.reportPaths=coverage/lcov.info
+sonar.typescript.tsconfigPath=tsconfig-sonar.json
+
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
--- /dev/null
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "extends": "@vue/tsconfig/tsconfig.dom.json",
+ "compilerOptions": {
+ "lib": ["es2023"],
+ "module": "commonjs",
+ "target": "es2022",
+ "strict": true,
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true,
+ "moduleResolution": "node",
+ "experimentalDecorators": true,
+ "allowSyntheticDefaultImports": true,
+ "sourceMap": true,
+ "composite": true,
+ "baseUrl": ".",
+ "types": ["node", "jsdom"],
+ "paths": {
+ "@/*": ["src/*"]
+ }
+ },
+ "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
+ "exclude": ["node_modules"]
+}