Files
Draupnir/test/tsconfig.json
gnuxie c1215ab045 Create a test/tsconfig.json.
We then run this as part of the build step, then run tsc with the
original project file to get the side effect of emitting the source
files. Since the `test/tsconfig.json` has `noEmit: true`.
2024-04-06 20:03:36 +01:00

8 lines
116 B
JSON

{
"extends": "../tsconfig.json",
"include": ["."],
"compilerOptions": {
"noEmit": true,
}
}