tsconfig.json 225 B

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