2023-03-25
https://gyazo.com/11eb656e983afa93193903c0a5f3a073
娘がブロンコビリー行きたい!ってなったので朝から行ってきた
久々ですが満足です
なんかなかひこくんも行ってきたらしい
ジュンくん雨降ってたので室内で歩かせてたらウンチしてしまう
https://gyazo.com/9133dc3809b387bd7d7d915036c426cdhttps://gyazo.com/f407dfa13277cb11309fefb2f546cf7f
買ってた鹿の角あげた
役満(ゲームボーイ)やってたけどキマジメタロウに全く勝てなくて涙…
三暗刻テンパってたのに逆に上がられました…
何回もハコられました…
MU2023やってる
@oekazuma:
SvelteがTypeScriptをやめてJavaScriptに移行しているらしいという情報が話題になってますが、正しく状況を整理すると、SvelteKitは既に約2年前からJavaScript +JSDocで書かれています。
Svelteも今後リリース予定のSvelte4ではTypeScriptからJavaScript + JSDocに変更するようです。
@Rich_Harris:
@nystudio107 @jutanium SvelteKit is fully typed and typechecked, and so will Svelte be. You don't sacrifice anything except a little brevity when you drop .ts in favour of JSDoc .js + .d.ts
マジだった
参考元
@jutanium:
Svelte is switching away from TypeScript?? This has got to be a mistake, right? (@Rich_Harris
https://thenewstack.io/rich-harris-talks-sveltekit-and-whats-next-for-svelte/
@Rich_Harris:
@jutanium nope, the article is correct. SvelteKit is written in JS and distributed as source code — no build step — and it's been miraculous for productivity. build steps make sense for apps, they make much less sense for libraries
https://github.com/Rich-Harris/devalue/blob/99e66d0643f92f3b01ac58237ba40672eed325d1/tsconfig.json#L5-L7
code:tsconfig.json
"declaration": true,
"declarationDir": "types",
"emitDeclarationOnly": true,