aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/tsconfig.json
blob: 99f465bc2a3ad7da007beb78b36b4f990f3649b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "extends": "../../tsconfig",
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "outDir": "./transpiled/",
        "jsx": "react",
        "baseUrl": "./",
        "allowJs": true,
        "strictNullChecks": false,
        "noImplicitThis": false,
        "declaration": false,
        "paths": {
            "*": ["node_modules/@types/*", "*"]
        }
    },
    "include": [
        "./ts/**/*",
        "../../node_modules/web3-typescript-typings/index.d.ts",
        "../../node_modules/ethers-typescript-typings/index.d.ts"
    ]
}