TelegramPWA/tsconfig.json
2025-09-19 14:25:30 +02:00

46 lines
1.0 KiB
JSON

{
"compilerOptions": {
// We don't care about this since Webpack runs Babel after TypeScript
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"webworker",
"es2021"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"noImplicitReturns": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"jsxImportSource": "@teact",
"paths": {
"@teact": ["./src/lib/teact/teact.ts"],
"@teact/*": ["./src/lib/teact/*"]
}
},
"include": [
"src",
"tests",
"plugins",
"dev",
"webpack.config.ts",
"babel.config.js",
"eslint.config.mjs",
".fantasticonrc.cjs",
"playwright.config.ts",
"jest.config.js",
".github/workflows/*.js",
"deploy/*.js"
]
}