jsconfig.json 498 B

12345678910111213141516171819202122232425262728
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=759670
  3. // for the documentation about the jsconfig.json format
  4. "compilerOptions": {
  5. "target": "es6",
  6. "module": "commonjs",
  7. "allowSyntheticDefaultImports": true
  8. },
  9. "exclude": [
  10. "src",
  11. "extensions",
  12. "test",
  13. "i18n",
  14. "out",
  15. "out-build",
  16. "out-vscode",
  17. "out-vscode-min",
  18. "out-editor",
  19. "out-editor-min",
  20. "out-monaco-editor-core",
  21. "resources",
  22. "scripts",
  23. ".build",
  24. "node_modules",
  25. "build/monaco/node_modules"
  26. ]
  27. }