From ffe68be1122949a362fb5e2a5d653face7ac460f Mon Sep 17 00:00:00 2001 From: CJ Date: Mon, 24 Jun 2024 15:15:54 -0600 Subject: [PATCH] fix: re-order tsconfig references --- index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.ts b/index.ts index f552cfd82..ed508a80f 100755 --- a/index.ts +++ b/index.ts @@ -403,10 +403,10 @@ async function init() { // All templates contain at least a `.node` and a `.app` tsconfig. references: [ { - path: './tsconfig.node.json' + path: './tsconfig.app.json' }, { - path: './tsconfig.app.json' + path: './tsconfig.node.json' } ] }