WebStudio/tsconfig.json

20 lines
459 B
JSON
Raw Permalink Normal View History

2019-11-12 12:21:05 +00:00
{
"compilerOptions": {
"target": "es5",
2020-04-20 12:54:43 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
2019-11-12 12:21:05 +00:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2020-04-20 12:54:43 +00:00
"jsx": "react"
2019-11-12 12:21:05 +00:00
},
2020-04-20 12:54:43 +00:00
"include": ["src"]
2019-11-12 12:21:05 +00:00
}