tsconfig.json 262 B

1234567891011121314
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "module": "commonjs",
  5. "noEmit": true,
  6. "noImplicitAny": true,
  7. "strictNullChecks": true,
  8. "lib": ["ES2015"],
  9. },
  10. "files": [
  11. "../ts3.1-typings/moment.d.ts",
  12. "./moment-tests.ts"
  13. ],
  14. }