mirror of
https://github.com/oceanprotocol/react.git
synced 2024-11-23 02:00:27 +01:00
22 lines
513 B
JSON
22 lines
513 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"target": "ESNext",
|
|
"lib": ["dom", "esnext"],
|
|
"outDir": "dist",
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"importHelpers": true,
|
|
|
|
/* Strict Type-Checking */
|
|
// TODO: remove and adapt for `strictNullChecks`
|
|
"strict": true,
|
|
"strictNullChecks": false
|
|
},
|
|
"include": ["./src/@types", "./src/index.ts"]
|
|
}
|