hedgedoc/frontend/cypress/tsconfig.json
Tilman Vatteroth 762a0a850e
fix: Move content into to frontend directory
Doing this BEFORE the merge prevents a lot of merge conflicts.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2022-11-20 19:48:40 +01:00

23 lines
360 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": true,
"strict": true,
"target": "es6",
"lib": [
"es6",
"dom"
],
"types": [
"cypress",
"cypress-commands",
"cypress-file-upload",
"node"
]
},
"include": [
"../node_modules/cypress",
"./**/*.ts"
],
"exclude": []
}