mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 10:10:32 -06:00
Co-authored-by: Matt Henkes <mjhenkes@gmail.com> Co-authored-by: estrada9166 <estrada9166@gmail.com> Co-authored-by: Emily Rohrbough <emilyrohrbough@yahoo.com> Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com>
30 lines
739 B
JSON
30 lines
739 B
JSON
{
|
|
"extends": "./../ts/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2016",
|
|
"lib": ["ES2018", "DOM", "DOM.Iterable", "ES2020.Promise", "ES2021.String"],
|
|
"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"
|
|
]
|
|
}
|