tsconfig.json 357 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "types": ["mocha", "node"],
  4. "target": "es6",
  5. "sourceMap": true,
  6. "noImplicitThis": true,
  7. "strictBindCallApply": true,
  8. "strictNullChecks": true,
  9. "strictFunctionTypes": true,
  10. "strictPropertyInitialization": true,
  11. "alwaysStrict": true,
  12. "moduleResolution": "node",
  13. "module": "commonjs",
  14. },
  15. }