-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
33 lines (31 loc) · 1.13 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleDetection": "force",
"moduleResolution": "bundler",
"esModuleInterop": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"allowJs": false,
"strict": true,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": false, // covered by eslint
"noImplicitOverride": true,
"noUnusedLocals": false, // covered by eslint
"noUnusedParameters": false, // covered by eslint
"verbatimModuleSyntax": true
// TODO: Remove once @types/bun pulls in bun-types v1.0.19+ (but it
// currently depends on in v1.0.18); when @types/bun releases new version.
// ↳ Also remember to remove bun-types from package.json#overrides too!
// "types": [
// "bun-types",
// "chrome",
// "./node_modules/typescript/lib/lib.esnext.full.d.ts" // workaround for bun-types breaking dom types
// ]
},
"include": ["src", "test", "build.ts", "*.config.ts", "*.d.ts"],
"references": [{ "path": "./tsconfig.node.json" }]
}