@nativescript-dom/angular-types
为 @nativescript/angular 提供的 TypeScript 定义,将 @nativescript/core 视图作为 DOM 元素在 HTML 模板中暴露
npm i --save @nativescript-dom/angular-types

angular-types

为 @nativescript/angular 提供的 TypeScript 定义,将 @nativescript/core 视图作为 DOM 元素在 HTML 模板中暴露,并在代码编辑器中提供 100% 完整的智能感知

安装

  1. 在项目中安装 coreangular 类型
npm install @nativescript-dom/core-types @nativescript-dom/angular-types --save-dev
  1. 按以下方式配置 tsconfig.json
{
"compilerOptions": {
...
"types": [
"node",
"@nativescript-dom/core-types",
"@nativescript-dom/angular-types"
],
...
}

配置 vscode

如果你使用 vscode,请配置 .vscode/settings.json

在项目根目录下创建一个 .vscode 文件夹,并添加一个包含以下内容的 settings.json 文件

{
"html.customData": [
"./node_modules/@nativescript-dom/angular-types/metadata.json"
]
}

对于 webstorm 无需额外步骤。

就是这样,享受完全类型的 @nativescript/angular 体验。

MIT 许可证