tsconfig.monaco.json 928 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "noEmit": true,
  5. "types": ["@webgpu/types", "trusted-types", "wicg-file-system-access"],
  6. "paths": {},
  7. "module": "amd",
  8. "moduleResolution": "node",
  9. "removeComments": false,
  10. "preserveConstEnums": true,
  11. "target": "ES2022",
  12. "sourceMap": false,
  13. "declaration": true
  14. },
  15. "include": [
  16. "typings/css.d.ts",
  17. "typings/thenable.d.ts",
  18. "typings/vscode-globals-product.d.ts",
  19. "typings/vscode-globals-nls.d.ts",
  20. "typings/editContext.d.ts",
  21. "vs/monaco.d.ts",
  22. "vs/editor/*",
  23. "vs/base/common/*",
  24. "vs/base/browser/*",
  25. "vs/platform/*/common/*",
  26. "vs/platform/*/browser/*"
  27. ],
  28. "exclude": [
  29. "node_modules/*",
  30. "vs/platform/files/browser/htmlFileSystemProvider.ts",
  31. "vs/platform/files/browser/webFileSystemAccess.ts",
  32. "vs/platform/telemetry/*",
  33. "vs/platform/assignment/*",
  34. "vs/platform/terminal/*",
  35. "vs/platform/externalTerminal/*"
  36. ]
  37. }