我有一个新项目,我想使用 Visual Studio , Typescript , ASP.net Core 和 CommonJS模块进行编码系统。实际上,我需要一个模块系统来组织我的依赖项。我该怎么办?
我可以在使用Visual Studio的打字稿项目中使用 CommonJS模块系统吗?
ts配置:
{
"compileOnSave": true,
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"module": "commonjs"
},
"exclude": [
"node_modules",
"wwwroot"
]
}
答案 0 :(得分:0)
是的,您可以像在Javascript中一样使用它。 Typescript是Javascript的超集,在Javascript中可能发生的所有事情在Typescript中也可能发生。
请参阅:
https://www.typescriptlang.org/docs/handbook/modules.html
然后在(ctrl / cmd + f)中搜索“需要”