Skip to content

Commit ae8c479

Browse files
committed
chore: update tsconfig to include additional library files
Updated the `tsconfig.app.json` to include files from shared libraries for better module loading. This ensures proper integration and avoids potential import issues in the application.
1 parent 0eb9d90 commit ae8c479

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

apps/mf2-application/tsconfig.app.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,18 @@
44
"outDir": "../../dist/out-tsc",
55
"types": []
66
},
7-
"files": ["src/main.ts"],
8-
"include": ["src/**/*.d.ts"],
9-
"exclude": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts"]
7+
"files": [
8+
"src/main.ts",
9+
"../../libs/nx-angular-mf/src/loadModule.ts",
10+
"../../libs/nx-angular-mf/src/index.ts",
11+
"../../libs/test-shared-library/src/index.ts"
12+
],
13+
"include": [
14+
"src/**/*.d.ts"
15+
],
16+
"exclude": [
17+
"jest.config.ts",
18+
"src/**/*.test.ts",
19+
"src/**/*.spec.ts"
20+
]
1021
}

0 commit comments

Comments
 (0)