Skip to content

Commit 7ad4950

Browse files
committed
chore(nx): Upgrade to Nx 18 - align angular package libs
1 parent 6b5a823 commit 7ad4950

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

apps/playground/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"useDefineForClassFields": false,
55
"esModuleInterop": true,
66
"forceConsistentCasingInFileNames": true,
7-
"strict": true,
7+
// "strict": true,
88
"noImplicitOverride": true,
99
"noPropertyAccessFromIndexSignature": true,
1010
"noImplicitReturns": true,

jest.preset.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ module.exports = {
1616
globals: {
1717
Uint8Array: Uint8Array,
1818
},
19+
passWithNoTests: true,
1920
};

libs/native-federation/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compilerOptions": {
44
"module": "commonjs",
55
"forceConsistentCasingInFileNames": true,
6-
"strict": true,
6+
// "strict": true,
77
"noImplicitOverride": true,
88
"noPropertyAccessFromIndexSignature": true,
99
"noImplicitReturns": true,

nx.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
"sharedGlobals": []
1919
},
2020
"targetDefaults": {
21+
"@angular-architects/native-federation:build": {
22+
"cache": true,
23+
"dependsOn": ["^build"],
24+
"inputs": ["production", "^production"]
25+
},
2126
"@angular-devkit/build-angular:application": {
2227
"cache": true,
2328
"dependsOn": ["^build"],

tsconfig.base.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"declaration": false,
77
"moduleResolution": "node",
88
"emitDecoratorMetadata": true,
9+
"esModuleInterop": true,
910
"experimentalDecorators": true,
1011
"importHelpers": true,
1112
"target": "es2015",
@@ -15,7 +16,6 @@
1516
"skipDefaultLibCheck": true,
1617
"baseUrl": ".",
1718
"paths": {
18-
"@angular-architects/build_angular": ["libs/build-angular/src/index.ts"],
1919
"@angular-architects/module-federation": ["libs/mf/src/index.ts"],
2020
"@angular-architects/module-federation-runtime": [
2121
"libs/mf-runtime/src/index.ts"
@@ -26,6 +26,9 @@
2626
"@angular-architects/native-federation": [
2727
"libs/native-federation/src/index.ts"
2828
],
29+
"@angular-architects/native-federation/config": [
30+
"libs/native-federation/config.ts"
31+
],
2932
"@angular-architects/playground-lib": [
3033
"libs/playground-lib/src/index.ts"
3134
],

0 commit comments

Comments
 (0)