tsconfig.json 396 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "module": "ESNext",
  4. "moduleResolution": "node",
  5. "target": "ES2022",
  6. "removeComments": true,
  7. "noEmitOnError": true,
  8. "noFallthroughCasesInSwitch": true,
  9. "noUnusedLocals": true,
  10. "newLine": "lf",
  11. "noImplicitAny": true,
  12. "noUnusedParameters": true,
  13. "typeRoots": ["@types"],
  14. "esModuleInterop": true,
  15. "skipLibCheck": true,
  16. "inlineSourceMap": true
  17. }
  18. }