WebStudio/tsconfig.json
Marks Polakovs 1203d90328 Re-enable noImplicitAny and explictly "any-ize" plugins
This is still kind of terrible, but better than slapping it across the entire codebase.
2020-04-20 14:53:17 +02:00

25 lines
492 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
},
"include": [
"src"
]
}