tsconfig.json 1.1 KB

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