mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 03:09:14 +08:00
23 lines
492 B
JSON
23 lines
492 B
JSON
|
{
|
||
|
"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.*"]
|
||
|
}
|