mirror of
https://github.com/danog/telegram-tt.git
synced 2024-11-26 12:24:46 +01:00
31 lines
627 B
JSON
31 lines
627 B
JSON
{
|
|
"compilerOptions": {
|
|
// We don't care about this since Webpack runs Babel after TypeScript
|
|
"target": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"webworker",
|
|
"es2019"
|
|
],
|
|
"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",
|
|
"tests",
|
|
"plugins",
|
|
"dev",
|
|
]
|
|
}
|