aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/tsconfig.json
blob: ebbee7ff341bd9f6461176a18810ff36a6d69801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "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"]
}