├── .gitignore ├── .npmrc ├── .travis.yml ├── .vscode └── settings.json ├── README.md ├── e2e ├── cypress.json ├── cypress │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── spec.ts │ ├── plugins │ │ └── index.js │ └── support │ │ ├── commands.js │ │ └── index.js ├── package-lock.json ├── package.json └── tsconfig.json ├── issue_template.md ├── package.json ├── renovate.json └── src ├── add-plugin.js ├── add-typescript-to-cypress-spec.js ├── cy-ts-preprocessor.js ├── index.js └── plugin.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/README.md -------------------------------------------------------------------------------- /e2e/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /e2e/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/e2e/cypress/fixtures/example.json -------------------------------------------------------------------------------- /e2e/cypress/integration/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/e2e/cypress/integration/spec.ts -------------------------------------------------------------------------------- /e2e/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/e2e/cypress/plugins/index.js -------------------------------------------------------------------------------- /e2e/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/e2e/cypress/support/commands.js -------------------------------------------------------------------------------- /e2e/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/e2e/cypress/support/index.js -------------------------------------------------------------------------------- /e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/e2e/package-lock.json -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/issue_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/renovate.json -------------------------------------------------------------------------------- /src/add-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/src/add-plugin.js -------------------------------------------------------------------------------- /src/add-typescript-to-cypress-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/src/add-typescript-to-cypress-spec.js -------------------------------------------------------------------------------- /src/cy-ts-preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/src/cy-ts-preprocessor.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | throw new Error('Nothing to use in this module') 2 | -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/add-typescript-to-cypress/HEAD/src/plugin.js --------------------------------------------------------------------------------