tsconfig.json 475 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es5",
  5. "experimentalDecorators": true,
  6. "emitDecoratorMetadata": true,
  7. "noEmitHelpers": true,
  8. "noEmitOnError": true,
  9. "lib": [
  10. "es6",
  11. "dom"
  12. ],
  13. "baseUrl": ".",
  14. "paths": {
  15. "~/*": [
  16. "app/*"
  17. ]
  18. }
  19. },
  20. "exclude": [
  21. "node_modules",
  22. "platforms"
  23. ]
  24. }