telegram-tt/tsconfig.json

31 lines
627 B
JSON
Raw Normal View History

2021-04-09 12:29:59 +02:00
{
"compilerOptions": {
2022-02-02 22:48:08 +01:00
// We don't care about this since Webpack runs Babel after TypeScript
2021-04-09 12:29:59 +02:00
"target": "esnext",
"lib": [
"dom",
2021-10-28 14:51:04 +02:00
"dom.iterable",
2021-04-09 12:29:59 +02:00
"webworker",
2021-10-28 14:51:04 +02:00
"es2019"
2021-04-09 12:29:59 +02:00
],
"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",
2021-04-09 12:29:59 +02:00
]
}