diff --git a/tsconfig.json b/tsconfig.json index 730e0e3..2369a8a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,15 @@ { - "extends": "@vue/tsconfig/tsconfig.json", + "extends": "@vue/tsconfig", "include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"], "compilerOptions": { "allowSyntheticDefaultImports": true, - "target": "ES2022", - "module": "ESNext", "moduleResolution": "Bundler", + "target": "es6", + "module": "es6", + "declaration": true, + "strict": true, "noImplicitAny": false, "rootDir": ".", - "strict": true, "noEmit": true, "allowImportingTsExtensions": true, }