12345678910111213141516171819 |
- {
- "compilerOptions": {
- "module": "ESNext",
- "moduleResolution": "node",
- "target": "ES2022",
- "removeComments": true,
- "noEmitOnError": true,
- "noFallthroughCasesInSwitch": true,
- "noUnusedLocals": true,
- "newLine": "lf",
- "noImplicitAny": true,
- "noUnusedParameters": true,
- "typeRoots": ["@types"],
- "esModuleInterop": true,
- "skipLibCheck": true,
- "inlineSourceMap": true
- }
- }
|