TelegramPWA/tsconfig.json

40 lines
879 B
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,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src",
"tests",
"plugins",
"dev",
"webpack.config.ts",
"webpack-electron.config.ts",
"babel.config.js",
"eslint.config.mjs",
".fantasticonrc.cjs",
"playwright.config.ts",
"jest.config.js",
".github/workflows/*.js"
]
}