From f0b8a64713d6a6c710e35531a956e91bb236ef49 Mon Sep 17 00:00:00 2001 From: lucataglia Date: Thu, 18 May 2023 16:59:18 +0200 Subject: [PATCH] remove traceResolution config --- packages/react-json-tree/package.json | 2 +- packages/react-json-tree/tsconfig.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/react-json-tree/package.json b/packages/react-json-tree/package.json index 8777751f..5190e755 100644 --- a/packages/react-json-tree/package.json +++ b/packages/react-json-tree/package.json @@ -35,7 +35,7 @@ "build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types && pnpm run build:umd", "build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs", "build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm", - "build:types": "tsc --traceResolution --emitDeclarationOnly", + "build:types": "tsc --emitDeclarationOnly", "build:umd": "rollup -c", "clean": "rimraf lib", "test": "jest", diff --git a/packages/react-json-tree/tsconfig.json b/packages/react-json-tree/tsconfig.json index 46522d10..0aade49a 100644 --- a/packages/react-json-tree/tsconfig.json +++ b/packages/react-json-tree/tsconfig.json @@ -1,8 +1,7 @@ { "extends": "../../tsconfig.react.base.json", "compilerOptions": { - "outDir": "lib/types", - "traceResolution": true + "outDir": "lib/types" }, "include": ["src"] }