-
-
Notifications
You must be signed in to change notification settings - Fork 629
feat: add separate tsconfig for test files #4616
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
f3b8948
547ffb9
10fd7f5
87fd98c
2671ac1
1b0ac92
2b177dd
055a53c
5d280c7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The main issue with the PR (your approach actually) it's that you don't follow the contribution workflow even though you marked the relevant checkbox 🤷♂️
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "extends": "../tsconfig.json", | ||
| "compilerOptions": { | ||
| // Do not emit a .tsbuildinfo. | ||
| "incremental": false, | ||
| "isolatedModules": true, | ||
| "noEmit": true, | ||
| // Tightening would require typed mocks across many a11y files. | ||
| "strict": false, | ||
| "types": ["jest", "node"] | ||
| }, | ||
| "exclude": ["e2e", "node_modules"], | ||
| "include": ["**/*.ts", "**/*.tsx", "../jest.config.ts"] | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.