From 5309076bab008be8ca334f351fdb9994307a9fe2 Mon Sep 17 00:00:00 2001 From: Ian Macalinao Date: Wed, 1 Jun 2022 11:51:51 -0500 Subject: [PATCH] build: remove unused tsconfigs --- .vscode/settings.json | 3 ++- tsconfig.cjs.json | 6 ------ tsconfig.esm.json | 6 ------ tsconfig.json | 1 + 4 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 tsconfig.cjs.json delete mode 100644 tsconfig.esm.json diff --git a/.vscode/settings.json b/.vscode/settings.json index 9a8f26352..6599d0cca 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,5 +12,6 @@ }, "eslint.nodePath": ".yarn/sdks", "prettier.prettierPath": ".yarn/sdks/prettier/index.js", - "typescript.enablePromptUseWorkspaceTsdk": true + "typescript.enablePromptUseWorkspaceTsdk": true, + "cSpell.words": ["saberhq"] } diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json deleted file mode 100644 index 487a477fe..000000000 --- a/tsconfig.cjs.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.esm.json", - "compilerOptions": { - "module": "CommonJS" - } -} diff --git a/tsconfig.esm.json b/tsconfig.esm.json deleted file mode 100644 index cc5774c0e..000000000 --- a/tsconfig.esm.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "noEmit": false - } -} diff --git a/tsconfig.json b/tsconfig.json index 84022d398..30940dcfd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "./packages/tsconfig/tsconfig.react.json", "compilerOptions": { + "noEmit": true, "jsxImportSource": "react", "types": ["jest"] }