I am encountering issues with my server's .ts files, as they are indicating that the modules and typings cannot be found even though I have already installed them and verified within the node_modules directory.
Here is the structure of my project: view screenshot
The errors being generated are shown in this image: see screenshot
This is how my tsconfig.json file is configured:
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings"
],
"filesGlob": [
"**/*.ts",
"typings/main",
"./typings/index.d.ts"
]
}