我使用npm创建了一个angular2项目。 我指的是这个链接: Angular2 Tutorial
我使用package.json
命令成功创建了npm init
文件。
但我没有找到任何创建tsconfig.json
文件的命令。
我不确定我应该使用命令还是使用编辑器创建该文件?
提前谢谢。
答案 0 :(得分:6)
使用init
选项调用TypeScript编译器将在当前目录中创建新的tsconfig.json
tsc --init
答案 1 :(得分:6)
为了补充Vadim的答案,安装TypeScript后可以使用tsc命令:
$ npm install -g typescript
您还可以在此评论中使用一些参数:
$ tsc --init --experimentalDecorators
--moduleResolution node --target ES5
--sourceMap --module system --removeComments
这样,您就非常接近Angular.io对此样本的使用。
如果不需要,您可以删除outDir
和rootDir
条目。此外,不会以这种方式生成条目。您可以在常规tsconfig.json
文件中手动添加它。
"emitDecoratorMetadata": true
希望它可以帮到你, 亨利