aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: d8be0da039a5b636a533445fbc407478d18d1126 (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
{
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "experimentalDecorators": true,
    "noEmit": true,
    // "skipLibCheck": true,
    "allowJs": true
  },
  "include": [".", "packages/bun-types/index.d.ts"],
  "exclude": [
    "src/test",
    // "src/js/builtins",
    "packages",
    "bench",
    "examples/*/*",
    "test",
    "src/deps",
    "bun-webkit",
    "src/bun.js/WebKit",
    "src/api/demo",
    "node_modules"
  ],
  "files": ["src/js/builtins/builtins.d.ts"]
}