diff --git a/packages/react-hooks/tsconfig.build.json b/packages/react-hooks/tsconfig.build.json index 43ef50d3b5..5b328c0b19 100644 --- a/packages/react-hooks/tsconfig.build.json +++ b/packages/react-hooks/tsconfig.build.json @@ -1,4 +1,5 @@ { + "extends": "../../tsconfig.build.json", "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ @@ -28,7 +29,7 @@ /* Modules */ "module": "ESNext" /* Specify what module code is generated. */, // "rootDir": "./", /* Specify the root folder within your source files. */ - "moduleResolution": "Bundler", /* Specify how TypeScript looks up a file from a given module specifier. */ + "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ diff --git a/packages/typescript-client/tsconfig.build.json b/packages/typescript-client/tsconfig.build.json index 4d9195a2eb..950bb8a5b8 100644 --- a/packages/typescript-client/tsconfig.build.json +++ b/packages/typescript-client/tsconfig.build.json @@ -1,4 +1,5 @@ { + "extends": "../../tsconfig.build.json", "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ @@ -28,7 +29,7 @@ /* Modules */ "module": "ESNext" /* Specify what module code is generated. */, // "rootDir": "./", /* Specify the root folder within your source files. */ - "moduleResolution": "Bundler", /* Specify how TypeScript looks up a file from a given module specifier. */ + "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 0000000000..5ac3f5084b --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "incremental": false, + "noEmit": false + }, + "include": ["**/*", ".*.js"] +}