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

tsconfig.json 321B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "es2016",
  4. "module": "commonjs",
  5. "outDir": "./dist",
  6. "rootDir": "./src",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "forceConsistentCasingInFileNames": true
  11. },
  12. "include": ["src/**/*"],
  13. "exclude": ["node_modules"]
  14. }