diff --git a/app/tsconfig.json b/app/tsconfig.json index e052425..d0f1ff7 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -1,21 +1,18 @@ { - "include": ["src", "types"], + "extends": "@tsconfig/svelte/tsconfig.json", + "include": [ + "./src/**/*.ts", + "types", + "node_modules/@types", + ], "compilerOptions": { "module": "esnext", - "target": "esnext", - "moduleResolution": "node", - "jsx": "preserve", - "baseUrl": "./", "paths": { }, "noEmit": true, - "strict": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "useDefineForClassFields": true, "allowSyntheticDefaultImports": true, - "importsNotUsedAsValues": "error" - }, - "extends": "@tsconfig/svelte/tsconfig.json" + "importsNotUsedAsValues": "error", + } }