aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs-example/tsconfig.json
blob: 3e5c9e435a80b3dbb4decd624dd40ecdc421a5d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "compilerOptions": {
        "outDir": "./lib/",
        "jsx": "react",
        "baseUrl": "./",
        "strictNullChecks": false,
        "paths": {
            "*": ["node_modules/@types/*", "*"]
        },
        "module": "commonjs",
        "target": "es5",
        "lib": ["es2017", "dom"],
        "sourceMap": true,
        "declaration": true,
        "experimentalDecorators": true,
        "noImplicitReturns": true,
        "pretty": true,
        "strict": true
    },
    "include": ["./example/ts/**/*"]
}