From 66fd99062439841e0efaf7d0bfc77e51da3e5aa1 Mon Sep 17 00:00:00 2001 From: Marcus Schiesser <mail@marcusschiesser.de> Date: Thu, 1 Feb 2024 16:03:13 +0700 Subject: [PATCH] fix: type-check --- packages/create-llama/e2e/tsconfig.json | 18 +++++++++++------- packages/create-llama/tsconfig.json | 2 ++ 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/packages/create-llama/e2e/tsconfig.json b/packages/create-llama/e2e/tsconfig.json index ce21a4de0..17aef9c5e 100644 --- a/packages/create-llama/e2e/tsconfig.json +++ b/packages/create-llama/e2e/tsconfig.json @@ -1,12 +1,16 @@ { - "extends": "../../../tsconfig.json", "compilerOptions": { - "tsBuildInfoFile": "./lib/.e2e.tsbuildinfo", + "target": "es2019", + "module": "esnext", + "moduleResolution": "node", + "strict": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "declaration": false, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "incremental": true, + "tsBuildInfoFile": "./lib/.tsbuildinfo", }, "include": ["./**/*.ts"], - "references": [ - { - "path": "..", - }, - ], } diff --git a/packages/create-llama/tsconfig.json b/packages/create-llama/tsconfig.json index dbc05655b..cd48a6cf3 100644 --- a/packages/create-llama/tsconfig.json +++ b/packages/create-llama/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "target": "es2019", + "module": "esnext", "moduleResolution": "node", "strict": true, "resolveJsonModule": true, @@ -9,6 +10,7 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "incremental": true, + "tsBuildInfoFile": "./lib/.tsbuildinfo", }, "include": [ "create-app.ts", -- GitLab