Vladyslav Zubko

Results 25 comments of Vladyslav Zubko

Hey guys, I have the opposite question/suggestion. Perhaps it is worth making it so that properties that are not described using `@propety` cannot be added to the class? Now I...

Hey @nicolo-ribaudo ! Thank you for all your hard work! ❤️ Quick question (didn't find it anywhere). Are there any plans for `with { type: "css" }`? According to the...

> Hey! We usually only release "official" plugins for features defined in the TC39 standard or proposals to it (+ TypeScript/JSX), and not for features that only work in browsers....

> _Excellent_ test case—thank you very much. This will ship fixed in 3.0.0-alpha.7 (or you can test via GitHub’s `main` branch now) Hey @zachleat, it seems that starting from Node.js...

Hey @VividVisions ! Here are the logs: As you can see, firstly I started the app with node v18.19.0 (npm v10.2.3) and there are no any errors. But once I...

I had this issue when I tried to import a `json` file via Import attributes (https://nodejs.org/docs/latest-v18.x/api/esm.html#import-attributes). I just changed it to ```js let packageJson = JSON.parse( (await readFile(new URL(`package.json`, import.meta.url))).toString(),...

> @what1s1ove You may need to import like so > > ```js > import eleventyPackage from "@11ty/eleventy/package.json" with { type: 'json' }; > ``` > > That's what solved the...

> The error seems unrelated to the `package.json` import. Perhaps you are using a different syntax that is not part of ECMAScript (it is at stage 3 or below). >...

> #3060 removed the .d.ts file to rely on JSDoc entirely, but the .d.ts had been exporting UserConfig (https://github.com/11ty/eleventy/blob/ecd0579a2dded6939510b7c23841388b26eb6d16/src/index.d.ts) and the issue now that is UserConfig isn't exported anywhere else....

> > > #3060 removed the .d.ts file to rely on JSDoc entirely, but the .d.ts had been exporting UserConfig ([`ecd0579`/src/index.d.ts](https://github.com/11ty/eleventy/blob/ecd0579a2dded6939510b7c23841388b26eb6d16/src/index.d.ts)) and the issue now that is UserConfig isn't exported...