Files
cypress/packages/data-context/tsconfig.json
T
Tim Griesser bad700b593 feat: add gulp makePackage, begin to scaffold data-context (#18186)
* add gulp makePackage, begin to scaffold data-context

* Don't type error on unused locals
2021-09-22 23:18:44 +10:00

20 lines
418 B
JSON

{
"extends": "../ts/tsconfig.json",
"include": ["src"],
"exclude": [
"test",
"script"
],
"compilerOptions": {
"importHelpers": true,
"strict": true,
"allowJs": false,
"noImplicitAny": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"noUnusedLocals": false,
"noUncheckedIndexedAccess": true,
"importsNotUsedAsValues": "error",
"types": []
}
}