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

tsconfig.json 596B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "es2020",
  4. "module": "es6",
  5. "lib": ["dom", "es2020"],
  6. "outDir": "./build",
  7. "sourceMap": true,
  8. "allowJs": true,
  9. "strict": true,
  10. "strictNullChecks": true,
  11. "noImplicitAny": true,
  12. "skipLibCheck": true,
  13. "moduleResolution": "node",
  14. "esModuleInterop": true,
  15. "isolatedModules": true,
  16. "allowSyntheticDefaultImports": true,
  17. "forceConsistentCasingInFileNames": true,
  18. "preserveSymlinks": true
  19. },
  20. "include": [
  21. "src/**/*"
  22. ]
  23. }