mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
39fc25cf5c
- 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.
16 lines
289 B
JSON
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"
|
|
]
|
|
}
|