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