aboutsummaryrefslogtreecommitdiff
path: root/src/cli/tsconfig-for-init.json
blob: feee4b584593d1695b01e458aaebf359a4efc371 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "compilerOptions": {
    "lib": ["ESNext"],
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "node",

    // so that if your project isn't using TypeScript, it still has autocomplete
    "allowJs": true,

    // "bun-types" is the important part
    "types": ["bun-types"]
  }
}