hedgedoc/cypress/tsconfig.json
Tilman Vatteroth 6ba957585a
Use yarn pnp as module linker (#2252)
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2022-07-30 23:32:19 +02: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": []
}