diff --git a/tsconfig.json b/tsconfig.json index 9593800..6a82df5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,10 @@ { "compilerOptions": { + "composite": true, + "skipLibCheck": true, "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, "sourceMap": true, "baseUrl": ".", "paths": { @@ -12,6 +16,5 @@ "vueCompilerOptions": { "nativeTags": ["block", "template", "component", "slot"] }, - "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], - "references": [{ "path": "./tsconfig.node.json" }] + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"] } diff --git a/tsconfig.node.json b/tsconfig.node.json deleted file mode 100644 index 42872c5..0000000 --- a/tsconfig.node.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "skipLibCheck": true, - "module": "ESNext", - "moduleResolution": "bundler", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] -}