tsconfig.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "compilerOptions": {
  3. "module": "es2015",
  4. "target": "es2016",
  5. "moduleResolution": "node",
  6. "noImplicitAny": false,
  7. "removeComments": false,
  8. "emitDeclarationOnly": false,
  9. "emitDecoratorMetadata": true,
  10. "experimentalDecorators": true,
  11. "sourceMap": true,
  12. "noImplicitReturns": true,
  13. "noFallthroughCasesInSwitch": true,
  14. "noUnusedLocals": true,
  15. "skipLibCheck": true,
  16. "esModuleInterop": true,
  17. "allowSyntheticDefaultImports": true,
  18. "importHelpers": true,
  19. "strictNullChecks": true,
  20. "lib": [
  21. "DOM",
  22. "ES5",
  23. "ES6",
  24. "ES7",
  25. "ES2015",
  26. "ES2017",
  27. "ES2019",
  28. "ES2021"
  29. ],
  30. "paths": {
  31. "*": [
  32. "../node_modules/*",
  33. "../../app/node_modules/*",
  34. "./app/node_modules/*"
  35. ],
  36. "tabby-*": ["../../tabby-*/src"],
  37. }
  38. },
  39. "typeAcquisition": {
  40. "include": [
  41. "../node_modules",
  42. "../../app/node_modules"
  43. ]
  44. },
  45. "angularCompilerOptions": {
  46. "strictTemplates": true,
  47. "enableResourceInlining": true,
  48. "strictInjectionParameters": true,
  49. },
  50. }