Permalink
27 lines (27 sloc)
646 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
next.js/tsconfig.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…rly exported and recommended rules are correctly defined. (#38183) * Adds tests to ensure `eslint-plugin-next`'s available rules are properly exported and recommended rules are defined correctly. * Condenses imports. * Sets default recommended value. * replace Object.hasOwn for node 14 Co-authored-by: JJ Kasper <jj@jjsweb.site>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"strict": false, | |
"noEmit": true, | |
"allowJs": true, | |
"jsx": "react", | |
"module": "esnext", | |
"target": "ESNext", | |
"skipLibCheck": true, | |
"esModuleInterop": true, | |
"moduleResolution": "node", | |
"baseUrl": ".", | |
"paths": { | |
"next-test-utils": ["test/lib/next-test-utils"], | |
"amp-test-utils": ["test/lib/amp-test-utils"], | |
"next-webdriver": ["test/lib/next-webdriver"], | |
"e2e-utils": ["test/lib/e2e-utils"] | |
} | |
}, | |
"include": [ | |
"test/jest.d.ts", | |
"test/**/*.test.ts", | |
"test/**/*.test.tsx", | |
"test/**/test/*", | |
"packages/next/types/webpack.d.ts" | |
] | |
} |