LaZe
Results
2
comments of
LaZe
> found this in the change log for Angular 15 > > > TypeScript versions older than 4.8.2 are no longer supported. > > So TypeScript 4.8+ support will quickly...
I personnaly solved it, on windows 11, by using the local address `127.0.0.1` (Angular project) package.json ```json { ... "scripts": { "dev": "ng serve --host=127.0.0.1", } ... } ``` tauri.config.json...