tsconfig.json 324 B

123456789101112131415
  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. "esModuleInterop": true,
  7. "outDir": "build",
  8. "types": ["node"],
  9. "checkJs": true
  10. },
  11. "include": [
  12. "index.ts",
  13. "lib"
  14. ]
  15. }