diff --git a/playgrounds/cjs/tsconfig.json b/playgrounds/cjs/tsconfig.json index 79278b5..8e6e856 100644 --- a/playgrounds/cjs/tsconfig.json +++ b/playgrounds/cjs/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "CommonJS", - "moduleResolution": "Node", + "moduleResolution": "Node10", "target": "ES2022", "noEmit": true, "strict": true diff --git a/playgrounds/esm/tsconfig.json b/playgrounds/esm/tsconfig.json index ea0da55..963fb44 100644 --- a/playgrounds/esm/tsconfig.json +++ b/playgrounds/esm/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "ES2022", - "moduleResolution": "Node", + "moduleResolution": "Node10", "target": "ES2022", "noEmit": true, "strict": true diff --git a/playgrounds/nextjs/tsconfig.json b/playgrounds/nextjs/tsconfig.json index 50b51d8..34d355f 100644 --- a/playgrounds/nextjs/tsconfig.json +++ b/playgrounds/nextjs/tsconfig.json @@ -9,7 +9,7 @@ "noEmit": true, "esModuleInterop": true, "module": "ESNext", - "moduleResolution": "Node", + "moduleResolution": "Node10", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", diff --git a/playgrounds/vite-cjs/tsconfig.json b/playgrounds/vite-cjs/tsconfig.json index 0c99c68..6875b2e 100644 --- a/playgrounds/vite-cjs/tsconfig.json +++ b/playgrounds/vite-cjs/tsconfig.json @@ -3,7 +3,7 @@ "target": "ESNext", "useDefineForClassFields": true, "module": "ESNext", - "moduleResolution": "Node", + "moduleResolution": "Node10", "strict": true, "jsx": "preserve", "sourceMap": true, diff --git a/playgrounds/vite-cjs/tsconfig.node.json b/playgrounds/vite-cjs/tsconfig.node.json index 65dbdb9..fc4ee94 100644 --- a/playgrounds/vite-cjs/tsconfig.node.json +++ b/playgrounds/vite-cjs/tsconfig.node.json @@ -2,7 +2,7 @@ "compilerOptions": { "composite": true, "module": "ESNext", - "moduleResolution": "Node" + "moduleResolution": "Node10" }, "include": ["vite.config.ts"] } diff --git a/playgrounds/webpack-cjs/tsconfig.json b/playgrounds/webpack-cjs/tsconfig.json index 229aa6e..3cd8099 100644 --- a/playgrounds/webpack-cjs/tsconfig.json +++ b/playgrounds/webpack-cjs/tsconfig.json @@ -4,7 +4,7 @@ "module": "ESNext", "strict": true, "jsx": "preserve", - "moduleResolution": "Node", + "moduleResolution": "Node10", "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true,