aboutsummaryrefslogtreecommitdiff
path: root/src/js/tsconfig.json
blob: e835e16035c33f33fe4ae9cc47b4bd7fcc24247d (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
{
  "extends": "../../tsconfig.base.json",
  "compilerOptions": {
    "lib": ["ESNext"],
    "module": "ESNext",
    "isolatedModules": true,
    "noEmit": true,
    "paths": {
      "$shared": ["./internal/shared.ts"], //deprecated
      "internal/*": ["./internal/*"] //deprecated
    }
  },
  "include": [
    //
    "node",
    "bun",
    "builtins",
    "functions",
    "internal",
    "thirdparty",
    "_codegen",
    "builtins.d.ts",
    "private.d.ts",
    "../../packages/bun-types/index.d.ts"
  ]
}