mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-21 14:41:00 -06:00
* chore: use import type across repo * chore: use import type across repo * chore: use import type across repo * chore: use import type across repo * update exports * update test * update import type * update types * use import type in driver * correctly export function * revert test * remove unrelated code * revert code * improve type imports * override for reporter
29 lines
657 B
JSON
29 lines
657 B
JSON
{
|
|
"extends": "./../ts/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2016",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictFunctionTypes": true,
|
|
"preserveWatchOutput": true,
|
|
"sourceMap": true,
|
|
"importHelpers": true,
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"noImplicitReturns": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"outDir": "dist",
|
|
"esModuleInterop": true,
|
|
"noErrorTruncation": true,
|
|
"types": []
|
|
},
|
|
"exclude": [
|
|
"dist"
|
|
]
|
|
}
|