tsconfig.json 309 B

12345678910111213141516
  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. /* TOOD: remove below flags for strict checking */
  10. "noImplicitAny": false
  11. },
  12. "include": [
  13. "src"
  14. ]
  15. }