tsconfig.json 367 B

123456789101112131415
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "experimentalDecorators": true,
  5. "module": "commonjs",
  6. "target": "es5",
  7. "sourceMap": true,
  8. "lib": ["dom", "es2015.promise", "es5"],
  9. "noImplicitAny": true,
  10. "noImplicitReturns": true,
  11. "noImplicitThis": true,
  12. "noUnusedLocals": true,
  13. "strictNullChecks": true
  14. }
  15. }