File tree Expand file tree Collapse file tree 4 files changed +28
-14
lines changed Expand file tree Collapse file tree 4 files changed +28
-14
lines changed Original file line number Diff line number Diff line change 1212 "prepack" : " pnpm run build" ,
1313 "install:examples" : " pnpm install --filter ./examples/with-next-intl --shamefully-hoist && pnpm install --filter ./examples/with-shadcn --shamefully-hoist" ,
1414 "docs" : " typedoc" ,
15- "lint" : " tsc --noEmit && eslint ./src" ,
16- "lint:fix" : " tsc --noEmit && eslint --fix ./src"
15+ "lint" : " tsc --noEmit && tsc --noEmit --project tsconfig.test.json && eslint ./src" ,
16+ "lint:fix" : " tsc --noEmit && tsc --noEmit --project tsconfig.test.json && eslint --fix ./src"
1717 },
1818 "repository" : {
1919 "type" : " git" ,
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " ES2021" ,
4+ "moduleResolution" : " nodenext" ,
5+ "module" : " NodeNext" ,
6+ "rootDir" : " ./src" ,
7+ "esModuleInterop" : true ,
8+ "strict" : true ,
9+ "skipLibCheck" : true ,
10+ "jsx" : " react" ,
11+ "declaration" : true ,
12+ "resolveJsonModule" : true
13+ },
14+ }
Original file line number Diff line number Diff line change 11{
2+ "extends" : " ./tsconfig.base.json" ,
23 "compilerOptions" : {
3- "target" : " ES2021" ,
4- "moduleResolution" : " nodenext" ,
5- "module" : " NodeNext" ,
6- "rootDir" : " ./src" ,
7- "outDir" : " ./dist" ,
8- "esModuleInterop" : true ,
9- "strict" : true ,
10- "skipLibCheck" : true ,
11- "jsx" : " react" ,
12- "declaration" : true ,
13- "resolveJsonModule" : true
4+ "outDir" : " ./dist"
145 },
15- "include" : [" src/**/*" ]
6+ "include" : [" src/**/*" ],
7+ "exclude" : [" **/*.test.ts" , " **/*.test.tsx" ]
168}
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ./tsconfig.json" ,
3+ "compilerOptions" : {
4+ "outDir" : " ./dist-test"
5+ },
6+ "include" : [" src/**/*.test.ts" , " src/**/*.test.tsx" ],
7+ "exclude" : []
8+ }
You can’t perform that action at this time.
0 commit comments