/ tsconfig.json
tsconfig.json
1 { 2 "extends": "./.svelte-kit/tsconfig.json", 3 "compilerOptions": { 4 "rewriteRelativeImportExtensions": true, 5 "allowJs": true, 6 "checkJs": true, 7 "esModuleInterop": true, 8 "forceConsistentCasingInFileNames": true, 9 "resolveJsonModule": true, 10 "skipLibCheck": true, 11 "sourceMap": true, 12 "strict": true, 13 "moduleResolution": "bundler", 14 "experimentalDecorators": true, 15 "emitDecoratorMetadata": true 16 }, 17 // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias 18 // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files 19 // 20 // To make changes to top-level options such as include and exclude, we recommend extending 21 // the generated config; see https://svelte.dev/docs/kit/configuration#typescript 22 "exclude": [ 23 "src/lib/http-client/tests/**/*", 24 "src/lib/http-client/vite.config.ts" 25 ] 26 }