tsconfig.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "outDir": "./dist/out-tsc",
  6. "forceConsistentCasingInFileNames": true,
  7. "noFallthroughCasesInSwitch": true,
  8. "sourceMap": true,
  9. "declaration": false,
  10. "downlevelIteration": true,
  11. "experimentalDecorators": true,
  12. "moduleResolution": "node",
  13. "importHelpers": true,
  14. "target": "es2017",
  15. "module": "es2020",
  16. "emitDecoratorMetadata": true,
  17. "allowSyntheticDefaultImports": true,
  18. "jsx": "react",
  19. "typeRoots": [
  20. "node_modules/@types",
  21. "src/typings/rawloader.typings.d.ts",
  22. "src/typings/jquery.typings.d.ts",
  23. "src/typings/jquery.flot.typings.d.ts",
  24. "src/typings/jquery.jstree.typings.d.ts",
  25. "src/typings/split.js.typings.d.ts",
  26. "src/typings/leaflet-geoman-extend.d.ts"
  27. ],
  28. "paths": {
  29. "@app/*": ["src/app/*"],
  30. "@env/*": [
  31. "src/environments/*"
  32. ],
  33. "@core/*": ["src/app/core/*"],
  34. "@modules/*": ["src/app/modules/*"],
  35. "@shared/*": ["src/app/shared/*"],
  36. "@home/*": ["src/app/modules/home/*"],
  37. "jszip": [
  38. "node_modules/jszip/dist/jszip.min.js"
  39. ],
  40. "ace": [
  41. "node_modules/ace-builds/src-noconflict/ace.js"
  42. ],
  43. "jquery": [
  44. "node_modules/jquery/dist/jquery.min.js"
  45. ],
  46. "jquery.terminal": [
  47. "node_modules/jquery.terminal/js/jquery.terminal.js"
  48. ],
  49. "tooltipster": [
  50. "node_modules/tooltipster/dist/js/tooltipster.bundle.min.js"
  51. ],
  52. "jstree": [
  53. "node_modules/jstree/dist/jstree.min.js"
  54. ]
  55. },
  56. "lib": [
  57. "es2020",
  58. "dom"
  59. ]
  60. },
  61. "angularCompilerOptions": {
  62. "enableI18nLegacyMessageIdFormat": false,
  63. "strictInjectionParameters": true,
  64. "strictInputAccessModifiers": true,
  65. "strictTemplates": false
  66. }
  67. }