Skip to content

Commit

Permalink
feat(web-shell): Enhanements to web application
Browse files Browse the repository at this point in the history
Updated web application to use nx-next and started implementation of the
  • Loading branch information
sullivanpj committed Nov 20, 2022
1 parent 805d37d commit 0ba6cde
Show file tree
Hide file tree
Showing 132 changed files with 2,663 additions and 6,760 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ tools/**/out-test/**
.cache-loader/
libs/shared-ui-design-components-react/**/generated

.next
.next
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@
"ms-vscode-remote.remote-containers"
]
}

File renamed without changes.
34 changes: 34 additions & 0 deletions apps/web/contact/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"extends": [
"plugin:@nrwl/nx/react-typescript",
"next",
"next/core-web-vitals",
"../../../.eslintrc.json"
],
"ignorePatterns": ["!**/*", ".next/**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"parserOptions": {
"project": ["apps/web/contact/tsconfig(.*)?.json"]
},
"rules": {
"@next/next/no-html-link-for-pages": ["error", "apps/web/contact/pages"]
}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
],
"rules": {
"@next/next/no-html-link-for-pages": "off"
},
"env": {
"jest": true
}
}
232 changes: 0 additions & 232 deletions apps/web/contact/.gitignore

This file was deleted.

4 changes: 4 additions & 0 deletions apps/web/contact/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"typescript.tsdk": "..\\..\\..\\node_modules\\typescript\\lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}
4 changes: 0 additions & 4 deletions apps/web/contact/ClientApp/.env.development

This file was deleted.

25 changes: 0 additions & 25 deletions apps/web/contact/ClientApp/.eslintrc.json

This file was deleted.

25 changes: 0 additions & 25 deletions apps/web/contact/ClientApp/.gitignore

This file was deleted.

Loading

0 comments on commit 0ba6cde

Please sign in to comment.