Seeking assistance with my Angular app development setup in VS2015. Even though it is recognized as a TypeScript Virtual Project, I am facing issues getting the transpiled files into the wwwroot
folder within my ASP.NET Core project. Here's an overview of my project structure:
https://i.stack.imgur.com/aGLsA.png
Sharing my configuration from the tsconfig.json
file:
{
"compileOnSave": true,
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"module": "system",
"experimentalDecorators": true,
"moduleResolution": "node",
"outDir": "../../wwwroot/"
},
"exclude": [
"node_modules",
"wwwroot"
]
}
Despite trying manual compilation using npm run tsc:w main.ts
, encountering 'file not found' error. Any tips on resolving this issue to successfully build my ts files?