diff --git a/example/tsconfig.json b/example/tsconfig.json index 2a6357c..28b0012 100644 --- a/example/tsconfig.json +++ b/example/tsconfig.json @@ -2,8 +2,9 @@ "extends": "../tsconfig.json", "compilerOptions": { "strict": false, + "moduleResolution": "Node16", "rootDirs": ["./", "../"], - "types": ["./types.d.ts", "../types/index.d.ts"] + "types": ["../types/index.d.ts"] }, "include": ["./**/*.ts", "./**/*.tsx"] -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index d8e1bb1..30c6e09 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "@mappable-world/mappable-cli", "compilerOptions": { + "moduleResolution": "Node16", "lib": ["dom", "dom.iterable", "esnext"], "typeRoots": ["./node_modules/@types", "./node_modules/@mappable-world", "./types"] },