16 lines
324 B
JSON
16 lines
324 B
JSON
{
|
|
"$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"
|
|
]
|
|
}
|