1
0

tsconfig.json 449 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "CommonJS",
  5. "esModuleInterop": true,
  6. "forceConsistentCasingInFileNames": true,
  7. "strict": true,
  8. "skipLibCheck": true,
  9. "declaration": false,
  10. "removeComments": false,
  11. "resolveJsonModule": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": false,
  14. "noFallthroughCasesInSwitch": true,
  15. "outDir": "out"
  16. },
  17. "include": ["src", "package.json"]
  18. }