spanwright
Version:
CLI tool to generate Cloud Spanner E2E testing framework projects with Go database tools and Playwright browser automation
26 lines • 503 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@/*": ["tests/*"]
},
"types": ["node"]
},
"include": [
"tests/**/*.ts",
"playwright.config.ts"
],
"exclude": [
"node_modules",
"test-results"
]
}