From 06596f5e4de61cc865065a01a35eecbbdcc3def4 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Wed, 17 Aug 2022 11:09:27 +0200 Subject: [PATCH] leave the original values alone --- .../app/lib/resources/json/ts/tsconfig-server.json.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/generators/app/lib/resources/json/ts/tsconfig-server.json.js b/packages/generators/app/lib/resources/json/ts/tsconfig-server.json.js index 0d98f8a9d8..3ac62fa204 100644 --- a/packages/generators/app/lib/resources/json/ts/tsconfig-server.json.js +++ b/packages/generators/app/lib/resources/json/ts/tsconfig-server.json.js @@ -9,12 +9,14 @@ module.exports = () => ({ }, include: [ + // Include root files + './', // Include all ts files './**/*.ts', // Include all js files './**/*.js', // Force the JSON files in the src folder to be included - './src/**/*.json', + 'src/**/*.json', ], exclude: [