From 6c90a3467dc21acd5a41e8bceaee8ac0afaf9f4a Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 17 Jul 2025 17:40:28 +0100 Subject: [PATCH] Include TS configuration --- assets/tsconfig.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 assets/tsconfig.json diff --git a/assets/tsconfig.json b/assets/tsconfig.json new file mode 100644 index 00000000..844cb68c --- /dev/null +++ b/assets/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "*": [ + "node_modules/*", + "../deps/*" + ] + }, + "allowJs": true, + "noEmit": true + }, + "include": [ + "js/**/*" + ] +}