aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 97bf40258992c6f38600424563a1368b55ed8c61 (plain) (blame)
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
{
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "noEmit": true,
    // "skipLibCheck": true,
    "allowJs": true
  },
  "include": [
    ".",
    "**/*.d.ts"
  ],
  "exclude": [
    "src/test",
    "packages",
    "bench",
    "examples/react-fast-refresh-test",
    "examples/macros",
    "test/bun.js/solid-dom-fixtures",
    "test/bun.js/bundled",
    // JavaScriptCore builtins use a non-standard "@" symbol to indicate a private identifier which no other tool supports
    "src/bun.js/builtins",
    "src/api/demo",
    "test/snapshots",
    "test/snapshots-no-hmr"
  ]
}