aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-wasm/tsconfig.json
blob: cb966c6845e0abfa872d4cc8c7a0c416c153e448 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "compilerOptions": {
    "moduleResolution": "node",
    "target": "esnext",
    "module": "esnext",
    "declaration": true,
    "esModuleInterop": true,
    "isolatedModules": false,
    "skipLibCheck": true,
    "emitDeclarationOnly": true,
    "outDir": ".",
    "baseUrl": "."
  },
  "include": [
    "./node_modules/peechy",
    "./schema.d.ts",
    "./index.ts",
    "./schema.js"
  ],
  "exclude": []
}