tsconfig.json 271 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "experimentalDecorators": true,
  4. "module": "commonjs",
  5. "target": "es5",
  6. "noImplicitAny": true,
  7. "noImplicitReturns": true,
  8. "noImplicitThis": true,
  9. "noUnusedLocals": true,
  10. "strictNullChecks": true
  11. }
  12. }