tsconfig.json 283 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "commonjs",
  5. "sourceMap": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "removeComments": true,
  9. "noImplicitAny": true,
  10. "strictNullChecks": true,
  11. "noUnusedLocals": true
  12. }
  13. }