tsconfig.jest.json 355 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "commonjs",
  5. "allowJs": true,
  6. "checkJs": false,
  7. "jsx": "react",
  8. "strict": false,
  9. "rootDirs": ["./src"],
  10. "typeRoots": [
  11. "src/types", "node_modules/@types"],
  12. "esModuleInterop": true,
  13. "skipLibCheck": true,
  14. "forceConsistentCasingInFileNames": true,
  15. }
  16. }