newsnow/tsconfig.node.json

23 lines
492 B
JSON
Raw Normal View History

2024-09-26 11:30:21 +08:00
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023", "DOM"],
"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": ["server", "*.config.*"]
}