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" + ] +}