aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-debug-adapter-protocol/tsconfig.json
blob: 3b3c098f313bf22728c308a423e048c87d3d1f66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "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,
    "outDir": "dist",
  },
  "include": ["src", "scripts", "../bun-types/index.d.ts", "../bun-inspector-protocol/src"]
}