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