Skip to content

Commit

Permalink
Install mobx
Browse files Browse the repository at this point in the history
  • Loading branch information
ycanardeau committed Jul 6, 2021
1 parent 54570be commit 6e34ac2
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 1 deletion.
43 changes: 43 additions & 0 deletions VocaDbWeb/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions VocaDbWeb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@
"knockout-punches": "^0.5.1",
"lodash": "^4.17.19",
"marked": "^0.3.18",
"mobx": "^6.3.2",
"mobx-react-lite": "^3.2.0",
"moment": "^2.17.0",
"qtip2": "^3.0.3",
"react": "^17.0.2",
Expand Down
5 changes: 4 additions & 1 deletion VocaDbWeb/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@
"@Models/*": ["Scripts/Models/*"],
"@Repositories/*": ["Scripts/Repositories/*"],
"@Shared/*": ["Scripts/Shared/*"],
"@Stores/*": ["Scripts/Stores/*"],
"@ViewModels/*": ["Scripts/ViewModels/*"]
},
"resolveJsonModule": true
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["Scripts/**/*"]
}
1 change: 1 addition & 0 deletions VocaDbWeb/webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ mix
'@Models': path.join(__dirname, 'Scripts/Models'),
'@Repositories': path.join(__dirname, 'Scripts/Repositories'),
'@Shared': path.join(__dirname, 'Scripts/Shared'),
'@Stores': path.join(__dirname, 'Scripts/Stores'),
'@ViewModels': path.join(__dirname, 'Scripts/ViewModels'),
})
.eslint({
Expand Down

0 comments on commit 6e34ac2

Please sign in to comment.