1
0
mirror of https://github.com/oceanprotocol/react.git synced 2024-06-28 16:47:50 +02:00
react/tsconfig.json

18 lines
397 B
JSON
Raw 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": true
2020-04-25 02:27:45 +02:00
},
"include": ["./src/@types", "./src/index.ts"]
2020-04-25 02:27:45 +02:00
}