File tree Expand file tree Collapse file tree 2 files changed +16
-17
lines changed Expand file tree Collapse file tree 2 files changed +16
-17
lines changed Original file line number Diff line number Diff line change 1+ module . exports = {
2+ extends : [ '@bjerk/eslint-config' , 'plugin:jest/recommended' ] ,
3+ plugins : [ 'jest' ] ,
4+ overrides : [
5+ {
6+ files : 'jest.config.*' ,
7+ rules : {
8+ 'import/no-default-export' : 'off' ,
9+ } ,
10+ } ,
11+ ] ,
12+ parserOptions : {
13+ project : true ,
14+ tsconfigRootDir : __dirname ,
15+ } ,
16+ } ;
Original file line number Diff line number Diff line change 1010 "node" : " >=18"
1111 },
1212 "prettier" : " @cobraz/prettier" ,
13- "eslintConfig" : {
14- "extends" : [
15- " @bjerk/eslint-config" ,
16- " plugin:jest/recommended"
17- ],
18- "plugins" : [
19- " jest"
20- ],
21- "overrides" : [
22- {
23- "files" : " jest.config.*" ,
24- "rules" : {
25- "import/no-default-export" : " off"
26- }
27- }
28- ]
29- },
3013 "scripts" : {
3114 "build" : " ncc build src/main.ts -e typescript -o dist --source-map" ,
3215 "dev" : " NODE_ENV=development dotenv-load nodemon src/main.ts" ,
You can’t perform that action at this time.
0 commit comments