TypeScript– tag –
-
React
React + Emotion + Jest + testing-libraryでテストする
前提・環境 create-react-app で作成したプロジェクトにCSS-in-JSの Emotion でスタイリングするプロジェクトcreate-react-app に付属している Jest + testing-library を使用して単体テストします パッケージバージョンnode.js20.9.0React18.2.0@emotion/... -
React
【Axios】try~catch(error)のerrorがEslintエラーになる対処法【React(TypeScript)】
try { // HTTPリクエストの実行 const response = await axios.get('https://example.com/api/data'); console.log(response.data); } catch (error) { // エラーハンドリング const { status, data } = error.response as { status: number; data... -
JavaScript/TypeScript
yarn tsc –noEmit でさくっとTypeScriptの型エラー発見
yarn tsc --noEmitの使用法 ターミナルにてプロジェクトのルートディレクトリで、下記のコマンドを実行します。 yarn tsc --noEmit これにより、TypeScriptは型チェックのみを実行し、JavaScriptファイルの生成を行いません。これは、開発中に型エラーだけ... -
React
React + TypeScript + Emotion 環境構築の備忘録
前提・環境 パッケージバージョンnode.js18.16.0React18.2.0TypeScript5.1.3@emotion/react11.11.1ESlint8.43.0@typescript-eslint/eslint-plugin5.60.1@typescript-eslint/parser5.60.1@emotion/eslint-plugin11.11.0 yarn create react-app --template t... -
React
React + TypeScript + ESlint + Prettier の環境構築【yarn】
npmよりyarn派の自分用に環境構築の備忘録 パッケージバージョンnode.js18.16.0React18.2.0TypeScript5.1.3ESlint8.43.0@typescript-eslint/eslint-plugin5.60.1@typescript-eslint/parser5.60.1Prettier2.8.8 create react-app VScodeのターミナルで $ ya...
1