mtcute-repl/tsconfig.node.json

25 lines
490 B
JSON
Raw Normal View History

2025-01-12 20:20:36 +03:00
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"moduleDetection": "force",
"module": "ESNext",
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
/* Linting */
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"isolatedModules": true,
"skipLibCheck": true
},
"include": [
"**/vite.config.ts"
]
2025-01-12 20:20:36 +03:00
}