tsconfig.json 295 B

1234567891011121314
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@appium/tsconfig/tsconfig.json",
  4. "compilerOptions": {
  5. "strict": false, // TODO: make this flag true
  6. "outDir": "build",
  7. "types": ["node"],
  8. "checkJs": true
  9. },
  10. "include": [
  11. "index.js",
  12. "lib"
  13. ]
  14. }