Files
cypress/packages/driver/tsconfig.json
T
Ben Kucera 12b6c2682a chore: change transpile target to es2015 for internal code / specs (#8597)
* change transpile target to es2015

* fix specs

* update snapshots

* rename mocha patch
2020-09-24 17:17:22 -04:00

28 lines
619 B
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"
]
}