summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/tsconfig.json
blob: b0a6808f4da4647cc3323350414089455256af28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "compilerOptions": {
    "composite": true,
    "lib": ["es6"],
    "module": "ES2020",
    "moduleResolution": "Node16",
    "target": "ES6",
    "allowJs": true,
    "noImplicitAny": true,
    "outDir": "lib",
    "declaration": true,
    "declarationMap": true,
    "noEmitOnError": true,
    "strict": true,
    "incremental": true,
    "sourceMap": true,
    "rootDir": "./src",
    "esModuleInterop": true,
    "importHelpers": true,
    "isolatedModules": true,
    "typeRoots": ["./node_modules/@types"]
  },
  "include": ["src/**/*"]
}