I have a new project and I want to code using Visual Studio, Typescript, ASP.net Core and CommonJS Module System. Actually I need a Module System to organize my dependencies. What should I do?
Can I use CommonJS Module System in a typescript Project using Visual Studio?
ts config:
{
"compileOnSave": true,
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"module": "commonjs"
},
"exclude": [
"node_modules",
"wwwroot"
]
}