mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"types": ["@types/bun"],
|
|
"rootDirs": ["./", "./.svelte-kit/types"],
|
|
"paths": {
|
|
"$assets": ["./app/assets"],
|
|
"$assets/*": ["./app/assets/*"],
|
|
"~shared": ["./shared"],
|
|
"~shared/*": ["./shared/*"],
|
|
"$lib": ["./app/lib"],
|
|
"$lib/*": ["./app/lib/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./app/**/*.js",
|
|
"./app/**/*.ts",
|
|
"./app/**/*.svelte",
|
|
".svelte-kit/ambient.d.ts",
|
|
"./cli/**/*.ts",
|
|
"./shared/**/*.ts",
|
|
"./.svelte-kit/ambient.d.ts",
|
|
"./.svelte-kit/non-ambient.d.ts",
|
|
"./.svelte-kit/types/**/$types.d.ts",
|
|
"./vite.config.js",
|
|
"./vite.config.ts",
|
|
"./app/routes/**/*.js",
|
|
"./app/routes/**/*.ts",
|
|
"./app/routes/**/*.svelte",
|
|
"./app/lib/**/*.js",
|
|
"./app/lib/**/*.ts",
|
|
"./app/lib/**/*.svelte",
|
|
"./src/**/*.js",
|
|
"./src/**/*.ts",
|
|
"./src/**/*.svelte",
|
|
"./tests/**/*.js",
|
|
"./tests/**/*.ts",
|
|
"./tests/**/*.svelte",
|
|
"./scripts/*.ts"
|
|
],
|
|
"exclude": [
|
|
"./node_modules/**",
|
|
"./src/service-worker.js",
|
|
"./src/service-worker/**/*.js",
|
|
"./src/service-worker.ts",
|
|
"./src/service-worker/**/*.ts",
|
|
"./src/service-worker.d.ts",
|
|
"./src/service-worker/**/*.d.ts"
|
|
]
|
|
}
|