tsconfig.json 741 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "removeComments": false,
  5. "preserveConstEnums": true,
  6. "sourceMap": false,
  7. "allowJs": true,
  8. "resolveJsonModule": true,
  9. "outDir": "../out/vs",
  10. "types": [
  11. "mocha",
  12. "semver",
  13. "sinon",
  14. "winreg",
  15. "trusted-types",
  16. "wicg-file-system-access"
  17. ],
  18. "plugins": [
  19. {
  20. "name": "tsec",
  21. "exemptionConfig": "./tsec.exemptions.json"
  22. }
  23. ]
  24. },
  25. "include": [
  26. "./bootstrap.js",
  27. "./bootstrap-amd.js",
  28. "./bootstrap-fork.js",
  29. "./bootstrap-node.js",
  30. "./bootstrap-window.js",
  31. "./cli.js",
  32. "./main.js",
  33. "./server-main.js",
  34. "./server-cli.js",
  35. "./typings",
  36. "./vs/**/*.ts",
  37. "vscode-dts/vscode.proposed.*.d.ts",
  38. "vscode-dts/vscode.d.ts"
  39. ]
  40. }