From 9d2c8fe9aa0909cd46b744ff1a47e925b4e3ac89 Mon Sep 17 00:00:00 2001 From: Javier Date: Thu, 26 Mar 2026 00:01:38 +0100 Subject: [PATCH] fix: restore missing tsconfig.json files --- frontend/tsconfig.json | 17 +++++++++++++++++ promo-site/tsconfig.json | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 frontend/tsconfig.json create mode 100644 promo-site/tsconfig.json diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 00000000..3e3712f3 --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "moduleResolution": "node" + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} \ No newline at end of file diff --git a/promo-site/tsconfig.json b/promo-site/tsconfig.json new file mode 100644 index 00000000..3e3712f3 --- /dev/null +++ b/promo-site/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "moduleResolution": "node" + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} \ No newline at end of file