1
0
mirror of https://github.com/oceanprotocol/react.git synced 2024-06-17 09:53:17 +02:00
react/example/tsconfig.json

20 lines
459 B
JSON
Raw Normal View History

2020-07-09 14:33:22 +02:00
{
"compilerOptions": {
"target": "es5",
2020-07-14 13:34:08 +02:00
"lib": ["dom", "dom.iterable", "esnext"],
2020-07-09 14:33:22 +02:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2020-07-13 11:57:27 +02:00
"jsx": "react",
"strict": true
2020-07-09 14:33:22 +02:00
},
2020-07-14 13:34:08 +02:00
"include": ["src"]
2020-07-09 14:33:22 +02:00
}