From 92af79d658c6dbb47224b128494d9ce7d2cac833 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 25 Jan 2026 23:55:40 -0800 Subject: [PATCH] =?UTF-8?q?chore(fontend-admin):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20TypeScript=20compiler=20settings=20in=20tsconfig.json=20for?= =?UTF-8?q?=20strictness,=20target=20version=20adjustments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../truth-validation/frontend-admin/tsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 features/truth-validation/frontend-admin/tsconfig.json diff --git a/features/truth-validation/frontend-admin/tsconfig.json b/features/truth-validation/frontend-admin/tsconfig.json new file mode 100644 index 000000000..0d872814f --- /dev/null +++ b/features/truth-validation/frontend-admin/tsconfig.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@lilith/configs/typescript/react", + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}