mirror of
https://github.com/oceanprotocol/react.git
synced 2024-11-22 09:47:06 +01:00
19 lines
434 B
JSON
19 lines
434 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"target": "ESNext",
|
|
"lib": ["dom", "esnext"],
|
|
"outDir": "dist",
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "src",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"importHelpers": true,
|
|
"strict": true
|
|
},
|
|
"include": ["./src/@types", "./src/hooks", "./src/index.ts"]
|
|
}
|