Skip to content

Commit

Permalink
Migrated to use MobX. Updated build process to include craco.
Browse files Browse the repository at this point in the history
  • Loading branch information
TWhidden committed Jan 7, 2019
1 parent ccf3167 commit 6a5292f
Show file tree
Hide file tree
Showing 27 changed files with 12,171 additions and 21,043 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bld/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
wwwroot/

# MSTest test Results
[Tt]est[Rr]esult*/
Expand Down
36 changes: 18 additions & 18 deletions HolidayShowWeb/ClientApp/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:5001",
"webRoot": "${workspaceRoot}/src",
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
} ,
"sourceMaps": true
}
]
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}/src",
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
} ,
"sourceMaps": true
}
]
}
9 changes: 9 additions & 0 deletions HolidayShowWeb/ClientApp/craco.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
babel: {
plugins: [

["@babel/plugin-proposal-decorators", { legacy: true }],
["@babel/plugin-proposal-class-properties", { "loose": true}]
]
}
};
12 changes: 12 additions & 0 deletions HolidayShowWeb/ClientApp/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "ES6"
},
"include": [
"**/*"
],
"exclude": [
"node_modules",
"**/node_modules/*"
]
}
Loading

0 comments on commit 6a5292f

Please sign in to comment.