fleet/tsconfig.json
Zach Wasserman 39fc25cf5c
Refactor cypress tests and expand testing (#450)
- Add cypress commands `setup` and `login`.
- Test setup page.
- Test add new host dialog (MVP establishing testing patterns).
- Add `testing-library/cypress`.
- Add `cypress` directory to lint config.
2021-03-12 11:49:28 -08:00

16 lines
289 B
JSON

{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"baseUrl": "./frontend",
"sourceMap": true,
"jsx": "react",
"types": ["cypress", "@testing-library/cypress"]
},
"include": [
"./frontend/**/*"
],
"exclude": [
"node_modules"
]
}