tsconfig_definitions_base.json 384 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "module": "ESNext",
  4. "target": "ESNext",
  5. "noEmitOnError": true,
  6. "allowJs": true,
  7. "declaration": true,
  8. "emitDeclarationOnly": true,
  9. "pretty": true,
  10. "removeComments": true,
  11. "listEmittedFiles": true,
  12. "typeRoots": [
  13. "../../third_party/node/node_modules/@types"
  14. ],
  15. "types": [
  16. "trusted-types"
  17. ]
  18. }
  19. }