tsconfig.node.json 565 B

1234567891011121314151617
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "lib": [],
  5. "types": ["node"]
  6. // We don't override `module` to `CommonJS` here.
  7. // Whatever build tool you use, we recommend you to author and ship in ES modules.
  8. // The recommendation may change when `"module": "Node12" / "NodeNext"` is stable.
  9. // If you are targeting CommonJS environment,
  10. // and use `tsc` or `ts-node` for transpilation,
  11. // you might need to manually override the following fields:
  12. // "module": "CommonJS",
  13. // "preserveValueImports": false,
  14. }
  15. }