tsconfig.json 363 B

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