tsconfig.json 367 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "target": "ES6",
  5. "module": "commonjs",
  6. "sourceMap": true,
  7. "emitDecoratorMetadata": true,
  8. "experimentalDecorators": true,
  9. "removeComments": true,
  10. "noImplicitAny": true,
  11. "strictNullChecks": true,
  12. "noUnusedLocals": true,
  13. "paths": {
  14. "app/*": [
  15. "src/*"
  16. ]
  17. }
  18. }
  19. }