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

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "CommonJS",
  5. "rootDir": "src",
  6. "outDir": "dist",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "noFallthroughCasesInSwitch": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "strictPropertyInitialization": false,
  13. },
  14. "exclude": [
  15. "scripts"
  16. ]
  17. }