From 4f23df4c943c8f4bbcd7c173b940d30c959f85c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Fri, 6 Mar 2026 12:23:10 +0800 Subject: [PATCH] feat: add TypeScript configuration --- test-framework/tsconfig.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test-framework/tsconfig.json diff --git a/test-framework/tsconfig.json b/test-framework/tsconfig.json new file mode 100644 index 0000000..eb76c39 --- /dev/null +++ b/test-framework/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "outDir": "./dist", + "rootDir": "./", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "moduleResolution": "node", + "types": ["node", "@playwright/test"] + }, + "include": [ + "shared/**/*", + "dev-audit/**/*" + ], + "exclude": [ + "node_modules", + "dist", + "reports" + ] +}