aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/tsconfig.json
blob: 43c417be06593b29ee6600aad168ddaa3aa2a4a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "extends": "../../tsconfig",
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "outDir": "./transpiled/",
        "jsx": "react",
        "baseUrl": "./",
        "allowJs": true,
        "strictNullChecks": true,
        "declaration": false,
        "paths": {
            "*": ["node_modules/@types/*", "*"]
        }
    },
    "include": ["./ts/**/*"]
}