vs2015社区如何输出类型定义
How to output type definitions in vs2015 community
我正在尝试在 vs2015 社区中输出类型定义(appBundle.d.ts)文件。
我看到有一个编译器选项“--declaration”,所以我试着将它添加到 tsconfig.json 文件中,如下所示:
{
"compilerOptions": {
"declaration": "www/scripts/appBundle.d.ts", // <------
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"out": "www/scripts/appBundle.js",
"target": "es5"
}
}
但是它不起作用; appBundle.js 按预期生成,但 appBundle.d.ts 未显示。
因此 declaration
选项可以是 true
或 false
。
查看 the tsconfig.json schema。
我正在尝试在 vs2015 社区中输出类型定义(appBundle.d.ts)文件。 我看到有一个编译器选项“--declaration”,所以我试着将它添加到 tsconfig.json 文件中,如下所示:
{
"compilerOptions": {
"declaration": "www/scripts/appBundle.d.ts", // <------
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"out": "www/scripts/appBundle.js",
"target": "es5"
}
}
但是它不起作用; appBundle.js 按预期生成,但 appBundle.d.ts 未显示。
因此 declaration
选项可以是 true
或 false
。
查看 the tsconfig.json schema。