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

tsconfig.json 248B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es6",
  5. "outDir": "dist",
  6. "lib": ["es6", "WebWorker"],
  7. "sourceMap": true,
  8. "rootDir": "src",
  9. "strict": true
  10. },
  11. "exclude": ["node_modules", ".vscode-test-web"]
  12. }