My Angular 9 library has a project structure similar to the one shown below
https://i.sstatic.net/gznfr.png
After running ng build falcon-core
to build the library, I noticed that the view-model files are missing from the dist folder
https://i.sstatic.net/vp9kM.png
I couldn't find any settings in the tsconfig.lib.ts
related to the file structure
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/lib",
"target": "es2015",
"declaration": true,
"inlineSources": true,
"types": [],
"lib": [
"dom",
"es2018"
]
},
"angularCompilerOptions": {
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true
},
"exclude": [
"src/test.ts",
"**/*.spec.ts"
]
}
Any ideas why the files are not included in the dist folder after building?