grading
Version:
Grading of student submissions, in particular programming tests.
9 lines • 420 B
JSON
{ // Konfiguration ist nur für VSCode relevant!
"extends": "../../tsconfig.json", // Konfiguration so wie im Projekt
"compilerOptions": {
"noEmit": true // Tests werden von ts-jest on-thy-fly übersetzt
},
// Nur für VSCode relevant, ermögliche so Zugriff auf
// die eigentichen Quelldaten (für Content Assist wie Quick Fixes)
"include": ["../../src/**/*", "./**/*"]
}