tsconfig.json 599 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "module": "Node16",
  4. "target": "ES2022",
  5. "lib": ["ES2022"],
  6. "sourceMap": true,
  7. "rootDir": "src",
  8. "typeRoots": ["./node_modules/@types"],
  9. "strict": true /* enable all strict type-checking options */,
  10. "skipLibCheck": true
  11. /* Additional Checks */
  12. // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
  13. // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
  14. // "noUnusedParameters": true, /* Report errors on unused parameters. */
  15. }
  16. }