tsconfig.json 239 B

1234567891011121314
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "module": "CommonJS",
  6. "types": [
  7. "node",
  8. "vitest/globals"
  9. ]
  10. },
  11. "include": [
  12. "src"
  13. ]
  14. }