mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 07:34:00 -05:00
30 lines
703 B
JSON
30 lines
703 B
JSON
{
|
|
"extends": "./../ts/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2016",
|
|
"lib": ["ES2018", "DOM", "DOM.Iterable"],
|
|
"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"
|
|
]
|
|
}
|