mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-01 12:30:01 -05:00
68c5714f1a
* Cleanup duplication across tsconfig files in packages * empty commit * Add ts-ignore * Add ts-ignore
22 lines
474 B
JSON
22 lines
474 B
JSON
{
|
|
"extends": "./../ts/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2016",
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
"allowJs": true,
|
|
"noImplicitThis": false,
|
|
"strictFunctionTypes": true,
|
|
"preserveWatchOutput": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"outDir": "dist",
|
|
"noErrorTruncation": true,
|
|
"types": []
|
|
},
|
|
"exclude": [
|
|
"dist"
|
|
]
|
|
}
|