mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
762a0a850e
Doing this BEFORE the merge prevents a lot of merge conflicts. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
23 lines
360 B
JSON
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": []
|
|
}
|