From f5c1641af287d4d833deecb3f260f3a2aeb3c743 Mon Sep 17 00:00:00 2001 From: Marco Pasqualetti <24919330+marcalexiei@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:54:52 +0100 Subject: [PATCH] chore(apps/documentation): remove `tsconfig.node.json` (#228) --- apps/documentation/tsconfig.json | 3 +-- apps/documentation/tsconfig.node.json | 11 ----------- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 apps/documentation/tsconfig.node.json diff --git a/apps/documentation/tsconfig.json b/apps/documentation/tsconfig.json index e6db9a03..9cd135c1 100644 --- a/apps/documentation/tsconfig.json +++ b/apps/documentation/tsconfig.json @@ -32,6 +32,5 @@ // Completeness "skipLibCheck": true }, - "include": ["src", "tuono.config.ts", "postcss.config.js"], - "references": [{ "path": "./tsconfig.node.json" }] + "include": ["src", "tuono.config.ts", "postcss.config.js"] } diff --git a/apps/documentation/tsconfig.node.json b/apps/documentation/tsconfig.node.json deleted file mode 100644 index 97ede7ee..00000000 --- a/apps/documentation/tsconfig.node.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "skipLibCheck": true, - "module": "ESNext", - "moduleResolution": "bundler", - "allowSyntheticDefaultImports": true, - "strict": true - }, - "include": ["vite.config.ts"] -}