tsconfig.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. }