1
0
mirror of https://github.com/oceanprotocol/react.git synced 2025-01-05 11:25:18 +01:00

another build tweak

This commit is contained in:
Matthias Kretschmann 2020-07-20 11:44:58 +02:00
parent 0416362316
commit c762517de3
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -1,16 +1,17 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "ESNext",
"moduleResolution": "node",
"target": "es6",
"lib": ["dom", "dom.iterable", "es2017"],
"target": "ESNext",
"lib": ["dom", "esnext"],
"outDir": "dist",
"jsx": "react",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"strictNullChecks": false
"strictNullChecks": false,
"importHelpers": true
},
"include": ["./src/@types", "./src/index.ts"],
"exclude": ["node_modules", "dist", "example"]