telegram-tt/tsconfig.json
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

27 lines
561 B
JSON

{
"compilerOptions": {
// We don't care about this since Parcel runs Babel after TypeScript
"target": "esnext",
"lib": [
"dom",
"webworker",
"es7"
],
"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"
]
}