aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/tsconfig.json
blob: 15e764c022158ae9414f877899e0e69497ad3beb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "outDir": "./transpiled/",
        "sourceMap": true,
        "noImplicitAny": true,
        "module": "commonjs",
        "target": "es5",
        "jsx": "react",
        "baseUrl": "./",
        "allowJs": true,
        "paths": {
            "*": [ "node_modules/@types/*", "*"]
        }
    },
    "include": [
        "./ts/**/*",
        "../../node_modules/web3-typescript-typings/index.d.ts"
    ]
}