Fresh project.
ng new
,ng upgrade @angular/core@19 @angular/cli@19
.npm install --save-dev @webgpu/types
.app.component.html
filetsconfig.json
the typeroots for webgpu: "typeRoots:["@webgpu/types"]
app.component.ts
, I have AppComponent
inherit from OnInit
and implement ngOnInit
solely with the action of assigning a local variable gpu
with the value navigator.gpu
.npm start
to run the web serverInstead of successfully building, I get the following error from the terminal:
✘ [ERROR] TS2339: Property 'gpu' does not exist on type 'Navigator'. [plugin angular-compiler]
src/app/app.component.ts:11:24:
11 │ let gpu = navigator.gpu;
╵ ~~~
What have I done wrong?
Files, for reference (only files that have been altered from the stock files angular creates):
tsconfig.json
:/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
"ES2022",
"dom"
],
"typeRoots":["./node_modules/@webgpu/types"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}
app.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
})
export class AppComponent implements OnInit{
title = 'webgpuhello';
public ngOnInit() {
let gpu = navigator.gpu;
}
}
app.component.html
: [is a blank file]
In your tsconfig.json
"types":["@webgpu/types"]
instead of using typeRoots
.
Per the docs,
If
typeRoots
is specified, only packages undertypeRoots
will be included. For example:
Which is not what you want.
Also note that web gpu might not be enabled on your browser. For Chrome there are several conditions listed here.
chrome://version
and update if necessary.