Skip to content

Commit

Permalink
fix: app serving
Browse files Browse the repository at this point in the history
  • Loading branch information
nacho-vazquez committed May 28, 2024
1 parent b69208a commit 42536cf
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 16 deletions.
17 changes: 17 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,23 @@
],
"projectSpecificFiles": []
},
"plugins": [
{
"plugin": "@nx/cypress/plugin",
"options": {
"targetName": "e2e",
"openTargetName": "open-cypress",
"componentTestingTargetName": "component-test",
"ciTargetName": "e2e-ci"
}
},
{
"plugin": "@nx/eslint/plugin",
"options": {
"targetName": "lint"
}
}
],
"nxCloudAccessToken": "M2I0MTZlMmMtYmQ5ZC00ZDg1LWFjOTQtZjU5ZGFkYWM3YjM2fHJlYWQ=",
"defaultBase": "main"
}
4 changes: 1 addition & 3 deletions packages/examples/lumberjack-app/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"assets": [
{
"glob": "**/*",
"input": "packages/examples/lumberjack-app"
"input": "packages/examples/lumberjack-app/public"
}
],
"scripts": []
Expand All @@ -43,9 +43,7 @@
},
"development": {
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"namedChunks": true,
"sourceMap": true
}
},
Expand Down
Empty file.
28 changes: 15 additions & 13 deletions packages/examples/lumberjack-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"target": "es2022",
"useDefineForClassFields": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.app.json"
"path": "./tsconfig.editor.json"
},
{
"path": "./tsconfig.spec.json"
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.editor.json"
"path": "./tsconfig.spec.json"
}
],
"compilerOptions": {
"target": "es2022",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
},
"extends": "../../../tsconfig.base.json",
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
Expand Down

0 comments on commit 42536cf

Please sign in to comment.