Within my Angular project, there is a single tsconfig file that stands alone without extending any other tsconfigs or including any additional properties. Towards the end of the file, we have the following snippet:
"angularCompilerOptions": {
"fakeProperty1": true,
},
"exclude": ["node_modules"]
}
What exactly does the exclude
property achieve in this context?