chore: errors shown in frontend tests in vscode (fehmer) (#4961)

This commit is contained in:
Christian Fehmer 2024-01-24 20:40:37 +01:00 committed by GitHub
parent 608f4a2283
commit 9007039ac3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,22 @@
{
"compilerOptions": {
"incremental": true,
"module": "commonjs",
"target": "es6",
"sourceMap": false,
"allowJs": true,
"checkJs": true,
"outDir": "build",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strictNullChecks": true,
"skipLibCheck": true,
"noEmit": true
},
"ts-node": {
"files": true
},
"include": ["./**/*.spec.ts", "./setup-tests.ts"]
}