aboutsummaryrefslogtreecommitdiff
path: root/src/js/tsconfig.json
blob: fdca4935e1fd49ea5c6925f9d180eb72b410a453 (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
{
  "extends": "../../tsconfig.base.json",
  "compilerOptions": {
    "lib": ["ESNext"],
    "module": "ESNext",
    "isolatedModules": true,
    "noEmit": true,
    "emitDeclarationOnly": false,
    "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"
  ]
}