Files
grafana/packages/grafana-e2e/cypress/tsconfig.json
T
Steven Vachon 23d72d25e4 @grafana/e2e: fix runtime ts-loader errors with Cypress support files (#22688)
* Minor changes

* Only exclude installed packages that are not @grafana/e2e itself

* Explicitly load Cypress tsconfig for clarity

* Fix Cypress tsconfig

  * it was trying to extend a config that is not published
  * it needs to be commonjs
2020-03-10 12:20:44 -04:00

9 lines
142 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"types": ["cypress"]
},
"extends": "@grafana/tsconfig",
"include": ["**/*.ts"]
}