tsconfig.json 297 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "CommonJS",
  5. "moduleResolution": "node",
  6. "esModuleInterop": true,
  7. "types": ["mocha", "node"],
  8. "strict": true,
  9. "skipLibCheck": true
  10. },
  11. "include": ["**/*.ts"],
  12. "exclude": ["node_modules"]
  13. }