{ "extends": "./tsconfig.json", "compilerOptions": { "noUnusedLocals": false, "noUnusedParameters": false, "strict": false, "types": ["jest", "node", "@testing-library/jest-dom"], "baseUrl": ".", "moduleResolution": "node", "paths": { "@/*": ["./src/*"] } }, "include": [ "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx", "jest.setup.js", "src/types/**/*.d.ts", "src/**/*.ts", "src/**/*.tsx" ], "exclude": [ "node_modules" ] }