From 5b2030a1ce124694140be7a891a0db2192bac476 Mon Sep 17 00:00:00 2001 From: keitakn Date: Mon, 12 Feb 2024 14:05:39 +0900 Subject: [PATCH 1/3] =?UTF-8?q?:art:=20tsconfig.json=E3=81=AE=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E3=82=92Next.js=E3=81=AE=E3=83=86=E3=83=B3=E3=83=97?= =?UTF-8?q?=E3=83=AC=E3=83=BC=E3=83=88=E3=81=AB=E5=90=88=E3=82=8F=E3=81=9B?= =?UTF-8?q?=E3=81=A6=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.build.json | 1 - tsconfig.json | 21 ++++++++++----------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index 64c4472..55590b1 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,7 +1,6 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "jsx": "react-jsx", "sourceMap": false } } diff --git a/tsconfig.json b/tsconfig.json index fec2bcd..8501298 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,19 +1,18 @@ { "compilerOptions": { - "target": "es2016", - "module": "esnext", - "jsx": "react-jsxdev", + "lib": ["dom", "dom.iterable", "esnext"], "sourceMap": true, "outDir": "dist", + "allowJs": true, + "skipLibCheck": true, "strict": true, - "moduleResolution": "node", - "allowSyntheticDefaultImports": true, + "noEmit": true, "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "declaration": true, - "declarationDir": "types", - "emitDeclarationOnly": true, - "isolatedModules": true + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, } } From 2a65f185601aae0582ac1c25ca0ad7a21ef6e2be Mon Sep 17 00:00:00 2001 From: keitakn Date: Mon, 12 Feb 2024 14:14:53 +0900 Subject: [PATCH 2/3] =?UTF-8?q?:arrow=5Fup:=20package=E3=81=AE=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3=E3=82=92=20v3.1.0=20?= =?UTF-8?q?=E3=81=AB=E3=82=A2=E3=83=83=E3=83=97=E3=82=B0=E3=83=AC=E3=83=BC?= =?UTF-8?q?=E3=83=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 302121a..37df0a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nekochans/lgtm-cat-ui", - "version": "3.0.3", + "version": "3.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@nekochans/lgtm-cat-ui", - "version": "3.0.3", + "version": "3.1.0", "license": "MIT", "devDependencies": { "@ianvs/prettier-plugin-sort-imports": "^4.1.1", diff --git a/package.json b/package.json index c6d8567..7132d4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nekochans/lgtm-cat-ui", - "version": "3.0.3", + "version": "3.1.0", "description": "https://lgtmeow.com のUIComponentを管理する為のpackage", "main": "./dist/index.es.js", "types": "./dist/index.d.ts", From 024767da7c730dd9627bd331e69ed5ef751eefcb Mon Sep 17 00:00:00 2001 From: keitakn Date: Mon, 12 Feb 2024 14:17:38 +0900 Subject: [PATCH 3/3] =?UTF-8?q?:shirt:=20Formatter=E3=81=AE=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=E3=82=92=E9=81=A9=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8501298..073cc57 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,6 +13,6 @@ "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", - "incremental": true, + "incremental": true } }