1
0
mirror of https://github.com/oceanprotocol/react.git synced 2024-11-23 02:00:27 +01:00
react/tsconfig.json

22 lines
513 B
JSON
Raw Permalink Normal View History

2020-04-25 02:27:45 +02:00
{
"compilerOptions": {
2020-07-20 11:44:58 +02:00
"module": "ESNext",
2020-04-25 02:27:45 +02:00
"moduleResolution": "node",
2020-07-20 11:44:58 +02:00
"target": "ESNext",
"lib": ["dom", "esnext"],
"outDir": "dist",
2020-05-11 13:47:21 +02:00
"jsx": "react",
"allowSyntheticDefaultImports": true,
2020-04-25 02:27:45 +02:00
"esModuleInterop": true,
"sourceMap": true,
2020-07-09 14:33:22 +02:00
"declaration": true,
"importHelpers": true,
/* Strict Type-Checking */
// TODO: remove and adapt for `strictNullChecks`
"strict": true,
"strictNullChecks": false
2020-04-25 02:27:45 +02:00
},
"include": ["./src/@types", "./src/index.ts"]
2020-04-25 02:27:45 +02:00
}