tsconfig.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "outDir": "./dist/out-tsc",
  5. "sourceMap": true,
  6. "declaration": false,
  7. "moduleResolution": "node",
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "noImplicitAny": true,
  11. "noImplicitThis": true,
  12. "suppressImplicitAnyIndexErrors":true,
  13. "alwaysStrict": true,
  14. "target": "es5",
  15. "typeRoots": [
  16. "node_modules/@types"
  17. ],
  18. "lib": [
  19. "es2017",
  20. "es2016",
  21. "es2015",
  22. "dom"
  23. ],
  24. "types": [
  25. "jasmine"
  26. ],
  27. "baseUrl": "src",
  28. "paths": {
  29. "@app/*": [ "app/*" ],
  30. "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
  31. "fs": [ "./shims/noop" ],
  32. "http": [ "./shims/http" ],
  33. "https": [ "./shims/https" ],
  34. "path": [ "./shims/path" ],
  35. "stream": [ "./shims/noop" ],
  36. "crypto": [ "./shims/noop" ]
  37. }
  38. },
  39. "angularCompilerOptions": {
  40. "strictInjectionParameters": true,
  41. "fullTemplateTypeCheck": true
  42. },
  43. "exclude": [
  44. "../node_modules",
  45. "node_modules",
  46. "dist",
  47. "../server",
  48. "src/**/*.spec.ts"
  49. ]
  50. }