this repo has no description
1{
2 "$schema": "https://json.schemastore.org/tsconfig.json",
3 "display": "Base",
4 "_version": "1.0.0",
5 "compilerOptions": {
6 "incremental": true,
7 "target": "ES2022",
8 "jsx": "react",
9 "lib": ["ESNext", "ESNext.Disposable", "DOM", "DOM.Iterable"],
10 "module": "ES2020",
11 "moduleResolution": "Bundler",
12 "resolveJsonModule": true,
13 "allowArbitraryExtensions": false,
14 "allowImportingTsExtensions": true,
15 "allowJs": true,
16 "strict": true,
17 "strictNullChecks": true,
18
19 // disable unreachable code detection because it breaks with esbuild labels
20 "allowUnreachableCode": true,
21 "noFallthroughCasesInSwitch": true,
22 "noImplicitReturns": true,
23 "declaration": true,
24 "declarationMap": true,
25 "outDir": "dist",
26 "sourceMap": true,
27 "stripInternal": true,
28 "esModuleInterop": true,
29 "forceConsistentCasingInFileNames": true,
30 "noErrorTruncation": true,
31 "verbatimModuleSyntax": false,
32 // meriyah has a broken import lol
33 "skipLibCheck": true
34 }
35}