Files
custom_wda/tsconfig.json

16 lines
324 B
JSON
Raw Permalink Normal View History

2026-02-03 16:52:44 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@appium/tsconfig/tsconfig.json",
"compilerOptions": {
"strict": false, // TODO: make this flag true
"esModuleInterop": true,
"outDir": "build",
"types": ["node"],
"checkJs": true
},
"include": [
"index.ts",
"lib"
]
}