From 14617d864d9a4d94b3f03665e18f97423e932f78 Mon Sep 17 00:00:00 2001 From: Robert Soriano Date: Sat, 29 Oct 2022 22:48:13 -0700 Subject: [PATCH] fix build --- packages/trpc-nuxt/tsconfig.json | 16 ++++++++++++++++ tsconfig.json | 3 --- 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 packages/trpc-nuxt/tsconfig.json delete mode 100644 tsconfig.json diff --git a/packages/trpc-nuxt/tsconfig.json b/packages/trpc-nuxt/tsconfig.json new file mode 100644 index 0000000..b7cd75b --- /dev/null +++ b/packages/trpc-nuxt/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "esnext", + "strict": true, + "esModuleInterop": true, + "moduleResolution": "node", + "skipLibCheck": true, + "noUnusedLocals": true, + "noImplicitAny": true, + "allowJs": true, + "noEmit": true, + "outDir": "dist", + "resolveJsonModule": true + } +} diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 56e7cda..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "./packages/playground/.nuxt/tsconfig.json" -}