1
0
mirror of https://github.com/oceanprotocol/react.git synced 2025-01-07 04:14: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": { "compilerOptions": {
"module": "commonjs", "module": "ESNext",
"moduleResolution": "node", "moduleResolution": "node",
"target": "es6", "target": "ESNext",
"lib": ["dom", "dom.iterable", "es2017"], "lib": ["dom", "esnext"],
"outDir": "dist", "outDir": "dist",
"jsx": "react", "jsx": "react",
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"esModuleInterop": true, "esModuleInterop": true,
"sourceMap": true, "sourceMap": true,
"declaration": true, "declaration": true,
"strictNullChecks": false "strictNullChecks": false,
"importHelpers": true
}, },
"include": ["./src/@types", "./src/index.ts"], "include": ["./src/@types", "./src/index.ts"],
"exclude": ["node_modules", "dist", "example"] "exclude": ["node_modules", "dist", "example"]