迁移新平台,移植红墩界
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "baseUrl": "./",
  26. "paths": {
  27. "@shared": [
  28. "src/app/shared/index"
  29. ],
  30. "@core": [
  31. "src/app/core/index"
  32. ],
  33. "@env/*": [
  34. "src/environments/*"
  35. ],
  36. "@_mock": [
  37. "_mock/index"
  38. ]
  39. },
  40. "types": ["vite/client"] // 添加这一行
  41. },
  42. "angularCompilerOptions": {
  43. "enableI18nLegacyMessageIdFormat": false,
  44. "strictInjectionParameters": true,
  45. "strictInputAccessModifiers": true,
  46. "strictTemplates": true
  47. }
  48. }