数据可视化大屏
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tsconfig.json 1.2KB

1年前
1年前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "outDir": "./dist/out-tsc",
  5. "forceConsistentCasingInFileNames": true,
  6. "strict": true,
  7. "noImplicitOverride": true,
  8. "noPropertyAccessFromIndexSignature": true,
  9. "noImplicitReturns": true,
  10. "noFallthroughCasesInSwitch": true,
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "sourceMap": true,
  14. "declaration": false,
  15. "experimentalDecorators": true,
  16. "moduleResolution": "node",
  17. "importHelpers": true,
  18. "target": "ES2022",
  19. "module": "ES2022",
  20. "useDefineForClassFields": false,
  21. "lib": [
  22. "ES2022",
  23. "dom"
  24. ],
  25. "allowSyntheticDefaultImports": true,
  26. "baseUrl": "./",
  27. "paths": {
  28. "@shared": [
  29. "src/app/shared/index"
  30. ],
  31. "@core": [
  32. "src/app/core/index"
  33. ],
  34. "@env/*": [
  35. "src/environments/*"
  36. ],
  37. "@_mock": [
  38. "_mock/index"
  39. ],
  40. "three": ["./node_modules/three/src/Three"],
  41. "three/*": ["./node_modules/three/*"]
  42. }
  43. },
  44. "angularCompilerOptions": {
  45. "enableI18nLegacyMessageIdFormat": false,
  46. "strictInjectionParameters": true,
  47. "strictInputAccessModifiers": true,
  48. "strictTemplates": true
  49. }
  50. }