Files
protocol/packages/website/tsconfig.json
2018-02-28 17:20:09 +01:00

22 lines
574 B
JSON

{
"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"
]
}