tsconfig.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. ],
  35. "common*": [
  36. "../../tabby-terminal/node_modules/xterm/src/common*"
  37. ],
  38. "tabby-*": ["../../tabby-*/src"]
  39. }
  40. },
  41. "typeAcquisition": {
  42. "include": [
  43. "../node_modules",
  44. "../../app/node_modules"
  45. ]
  46. }
  47. }