tsconfig.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "common*": [
  37. "../../tabby-terminal/node_modules/xterm/src/common*"
  38. ],
  39. "tabby-*": ["../../tabby-*/src"],
  40. }
  41. },
  42. "typeAcquisition": {
  43. "include": [
  44. "../node_modules",
  45. "../../app/node_modules"
  46. ]
  47. },
  48. "angularCompilerOptions": {
  49. "strictTemplates": true,
  50. "enableResourceInlining": true,
  51. "strictInjectionParameters": true,
  52. },
  53. }