tsconfig.json 405 B

12345678910111213141516
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "types": ["jest", "node"],
  5. "esModuleInterop": true,
  6. "allowSyntheticDefaultImports": true,
  7. "module": "commonjs",
  8. "target": "ES2021",
  9. "lib": ["ES2021"],
  10. "strict": true,
  11. "skipLibCheck": true,
  12. "resolveJsonModule": true
  13. },
  14. "include": ["**/*.spec.ts", "**/*.e2e-spec.ts"],
  15. "exclude": ["node_modules", "dist"]
  16. }