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 4
4
lerna-debug.log
5
5
.idea
6
6
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";
8
8
import prettierPlugin from "eslint-plugin-prettier" ;
9
9
import prettierConfig from "eslint-config-prettier/flat" ;
10
10
import prettierRecommended from "eslint-plugin-prettier/recommended" ;
11
+ import { Linter } from "eslint" ;
11
12
12
13
const consumerTsconfig = path . resolve ( process . cwd ( ) , "tsconfig.json" ) ,
13
14
parserProject = fs . existsSync ( consumerTsconfig ) ? consumerTsconfig : undefined ;
@@ -206,4 +207,4 @@ export default tseslint.config(
206
207
} ,
207
208
prettierConfig ,
208
209
prettierRecommended ,
209
- ) ;
210
+ ) as unknown as Linter . Config ;
Original file line number Diff line number Diff line change 4
4
"module" : " ESNext" ,
5
5
"moduleResolution" : " Bundler" ,
6
6
"strict" : true ,
7
- "declaration" : false ,
8
- "declarationMap" : false ,
7
+ "declaration" : true ,
8
+ "declarationMap" : true ,
9
9
"outDir" : " dist" ,
10
10
"esModuleInterop" : true ,
11
11
"resolveJsonModule" : true ,
12
12
"forceConsistentCasingInFileNames" : true ,
13
- "skipLibCheck" : true ,
14
13
"sourceRoot" : " src" ,
15
14
"sourceMap" : true
16
15
}
You can’t perform that action at this time.
0 commit comments