summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/tsconfig.json
blob: 4f730e1c53ed5c25497b7d93ac4ea843f1c6767a (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": "ESNext",
        "moduleResolution": "node",
        "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/**/*"]
}