Files
appium/packages/tsconfig/tsconfig.json
T
Christopher Hiller fd912346fa feat(strongbox): create @appium/strongbox
This PR creates a new package `@appium/strongbox`, which provides a generic persistence store for Appium extensions.
2023-04-07 12:38:29 -07:00

23 lines
541 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node14/tsconfig.json",
"ts-node": {
"transpileOnly": true
},
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"stripInternal": true,
"sourceMap": true,
"removeComments": false,
"strict": false,
"types": ["node"],
"lib": ["es2020", "ES2021.WeakRef"]
}
}