mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-02 04:50:06 -05:00
48c2ba28e7
* chore: replace dtslint with eslint-plugin-expect-type * update guide * add lint-staged * rm stale script * modify cli eslint and tsconfigs to support ts migration * separate expect-type files * modifications to tsconfigs to make eslint a little easier * revert workflow.yml * further revision * put tslint config for dtslint back in * ensure false negative case is tested * correct tsconfigs * align dtslint tsconfig with eslint 9 config * consolidate / DRY tsconfigs
14 lines
210 B
JSON
14 lines
210 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"noImplicitAny": false,
|
|
"types": [
|
|
"mocha", "chai", "sinon"
|
|
],
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|