Files
appium/packages/base-plugin/tsconfig.json
Christopher Hiller 5e96a6d2a7 feat(base-plugin): prepare for use by plugins
This adds the requisite TS setup for base-plugin
2022-05-12 12:32:57 -07:00

15 lines
327 B
JSON

{
"extends": "../../config/tsconfig.base.json",
"compilerOptions": {
"outDir": "build",
"checkJs": true,
"strict": true,
"paths": {
"@appium/support": ["../support"],
"@appium/types": ["../types"]
}
},
"include": ["lib"],
"references": [{"path": "../support"}, {"path": "../types"}]
}