aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/tsconfig.json
blob: 69d2520fa2e324a4839993ffd09cb4fb256f9a94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "extends": "../../tsconfig",
    "compilerOptions": {
        "outDir": "lib",
        "rootDir": ".",
        "jsx": "react",
        "allowSyntheticDefaultImports": true,
        "noImplicitAny": true,
        "module": "ESNext",
        "moduleResolution": "node",
        "lib": ["es2015"],
        "target": "es5",
        "sourceMap": true
    },
    "include": ["./src/**/*", "./test/**/*"]
}