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