diff --git a/package.json b/package.json index 8b8b9f0..f26a088 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "dev": "next dev", "build": "next build", "start": "next start", - "lint": "next lint" + "lint": "next lint", + "test": "jest" }, "dependencies": { "@babel/preset-env": "^7.23.3", diff --git a/tsconfig.json b/tsconfig.json index e59724b..022c08e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,8 @@ "strict": true, "noEmit": true, "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", + "module": "ESNext", + "moduleResolution": "Bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve",