Philipp Schiffmann

Results 15 comments of Philipp Schiffmann

FWIW, I'd like to suggest using quotes, like we already have for string literals: `100__000_000__000_000__000_000` might instead be expresssed as `` `100 000,000 000,000 000,000` ``. If you'd rather reserve...

With regards to the npm importer, I think it would make sense that it uses the [node resolution algorithm](https://nodejs.org/api/modules.html#modules_all_together). Some releases ago, node added support for an [exports](https://nodejs.org/api/packages.html#packages_package_entry_points) field in...

I think this error happens when I don't await the request body in the handler. ```ts // panic handler(request) { request.text(); return new Response("Hello world"); } // no panic async...

AFAICT, TypeScript emits imports in the same style as they appear in the source file. That means to fix this issue, you just need to append `.js` to all `import`...

When you get this typescript error: ``` ./node_modules/@material/material-color-utilities/dist/index.d.ts:17:15 - error TS2835: Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node12' or 'nodenext'. Did you mean...

> I wonder how they've resolved some of the issues we're currently looking into about the context where various callbacks run in. Dart zones are not implemented in user land,...

> > You can set multiple zone keys at once. > > What is a use case here? The main use cases this proposal has been designed for (schedulers, tracing,...

> > In Dart, you don't have to create a Variable, you could just as well use any other value as a zone key. > > While not the only...

FWIW, I can report my personal experiences here. I've been using final inferred variables for some time now (all my repos have the `prefer_final_locals` and `omit_local_variable_types` lints enabled). For local...

I would like to use `"moduleResolution": "nodenext"` in a react project, but can't because the package.json of `@types/react` and `@types/react-dom` haven't been updated with exports fields. A [PR](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/57861) to update...