22 lines
574 B
JSON
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"
|
|
]
|
|
}
|