mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-22 06:59:30 -06:00
* correct indentation * update formatting * add comments * update tsconfig.json * Update packages/data-context/src/sources/migration/codegen.ts Co-authored-by: Blue F <blue@cypress.io> * Update packages/data-context/src/sources/migration/codegen.ts Co-authored-by: Blue F <blue@cypress.io> Co-authored-by: Blue F <blue@cypress.io>
24 lines
448 B
JSON
24 lines
448 B
JSON
{
|
|
"extends": "../ts/tsconfig.json",
|
|
"include": [
|
|
"src/*.ts",
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"test",
|
|
"script"
|
|
],
|
|
"compilerOptions": {
|
|
"lib": ["esnext"],
|
|
"strict": true,
|
|
"allowJs": false,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": false,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"types": []
|
|
},
|
|
}
|