aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-debug-adapter-protocol/tsconfig.json
blob: bada4ff8f9ed3cf1e5a31779d869cbbbfcc0281d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "compilerOptions": {
    "lib": ["ESNext"],
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "nodenext",
    "moduleDetection": "force",
    "allowImportingTsExtensions": true,
    "noEmit": true,
    "composite": true,
    "strict": true,
    "downlevelIteration": true,
    "skipLibCheck": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "inlineSourceMap": true,
    "allowJs": true,
    "types": ["bun-types"],
    "outDir": "dist",
  },
  "include": [".", "../bun-types/index.d.ts", "../bun-inspector-protocol/index"]
}