File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 44lerna-debug.log
55.idea
66
7- .nx /cache
7+ .nx /cache
8+ .nx /workspace-data
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import tsdoc from "eslint-plugin-tsdoc";
88import prettierPlugin from "eslint-plugin-prettier" ;
99import prettierConfig from "eslint-config-prettier/flat" ;
1010import prettierRecommended from "eslint-plugin-prettier/recommended" ;
11+ import { Linter } from "eslint" ;
1112
1213const consumerTsconfig = path . resolve ( process . cwd ( ) , "tsconfig.json" ) ,
1314 parserProject = fs . existsSync ( consumerTsconfig ) ? consumerTsconfig : undefined ;
@@ -206,4 +207,4 @@ export default tseslint.config(
206207 } ,
207208 prettierConfig ,
208209 prettierRecommended ,
209- ) ;
210+ ) as unknown as Linter . Config ;
Original file line number Diff line number Diff line change 44 "module" : " ESNext" ,
55 "moduleResolution" : " Bundler" ,
66 "strict" : true ,
7- "declaration" : false ,
8- "declarationMap" : false ,
7+ "declaration" : true ,
8+ "declarationMap" : true ,
99 "outDir" : " dist" ,
1010 "esModuleInterop" : true ,
1111 "resolveJsonModule" : true ,
1212 "forceConsistentCasingInFileNames" : true ,
13- "skipLibCheck" : true ,
1413 "sourceRoot" : " src" ,
1514 "sourceMap" : true
1615 }
You can’t perform that action at this time.
0 commit comments