TidGi-Desktop/features/tsconfig.json
lin onetwo 7014d6d322 test: Add data-testid attributes for test automation
Added data-testid attributes to form inputs and buttons in ExternalAPI components to improve test automation reliability. Updated feature files and step definitions to use these selectors, refined window switching logic, and improved timing for UI interactions. Also exposed isElectronDevelopment and added isMainWindowPage utility for window identification.
2025-08-17 15:42:34 +08:00

22 lines
439 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": "..",
"outDir": "../out/features",
"noEmit": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true
},
"include": [
"**/*.ts",
"**/*.js",
"../src/constants/pageTypes.ts"
],
"exclude": [
"node_modules",
"**/*.d.ts"
]
}