···11{
22- "extends": "./.svelte-kit/tsconfig.json",
33- "compilerOptions": {
44- "allowJs": true,
55- "checkJs": true,
66- "esModuleInterop": true,
77- "forceConsistentCasingInFileNames": true,
88- "resolveJsonModule": true,
99- "skipLibCheck": true,
1010- "sourceMap": true,
1111- "strict": true,
1212- "moduleResolution": "bundler"
1313- }
1414- // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
1515- // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
1616- //
1717- // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
1818- // from the referenced tsconfig.json - TypeScript does not merge them in
22+ "extends": "./.svelte-kit/tsconfig.json",
33+ "compilerOptions": {
44+ "allowJs": true,
55+ "checkJs": true,
66+ "esModuleInterop": true,
77+ "forceConsistentCasingInFileNames": true,
88+ "resolveJsonModule": true,
99+ "skipLibCheck": true,
1010+ "sourceMap": true,
1111+ "strict": true,
1212+ "moduleResolution": "bundler",
1313+ "types": ["bun-types"]
1414+ }
1515+ // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
1616+ // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
1717+ //
1818+ // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
1919+ // from the referenced tsconfig.json - TypeScript does not merge them in
1920}