aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/tsconfig.json
blob: 5b3510c263d2efcee8fd8150ed4de55218f1e1cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "outDir": "./transpiled/",
        "sourceMap": true,
        "lib": [ "es2015", "dom" ],
        "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"
    ]
}