mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-24 17:38:52 -05:00
e22b362d4c
* Out-of-the-box TypeScript support for plugins * Out-of-the-box TypeScript Support for tests. * Fix server unit tests. * Don't use bundled typescript. * Added esModuleInterop option. * Fixed unit tests. * Added simple_tsify to integration test. * Added integration tests for ts spec files. * simple_tsify to ignore transpiling json files. * transpile on flush. * Fix lint failure. * Added error message. * Add error message for restart test runner for support file. * Added JSDoc comment. * Remove preset-typescript. * Fix integration test failure. * Fix type errors. * Add e2e test for typescript * Fix lint error. * Add plugin support and e2e test. * Fix server unit test failures. * Update snapshots. * Migrate typescript compilation code to browserify-preprocessor * Remove unnecessary files and test. They're tested in preprocessor. * Fix test failures. * Update @types/react. * Update yarn.lock. * Clear name: registerTS -> tsRegistered. * Clarify why tsRegistered = true exists. * Add working examples for support and plugins. * Move TypeScript tests to its own file.
25 lines
528 B
JavaScript
25 lines
528 B
JavaScript
const resolve = require('resolve')
|
|
const env = require('../util/env')
|
|
|
|
module.exports = {
|
|
/**
|
|
* Resolves the path to 'typescript' module.
|
|
*
|
|
* @param {Config} cypress config object
|
|
* @returns {string|null} path if typescript exists, otherwise null
|
|
*/
|
|
typescript: (config) => {
|
|
if (env.get('CYPRESS_INTERNAL_NO_TYPESCRIPT') === '1') {
|
|
return null
|
|
}
|
|
|
|
try {
|
|
return resolve.sync('typescript', {
|
|
baseDir: config.projectRoot,
|
|
})
|
|
} catch (e) {
|
|
return null
|
|
}
|
|
},
|
|
}
|