1
0
mirror of https://github.com/oceanprotocol/react.git synced 2024-06-26 11:16:49 +02:00
react/example/tsconfig.json

26 lines
491 B
JSON
Raw Normal View History

2020-07-09 14:33:22 +02:00
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"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
},
"include": [
"src"
]
}