Transpile separately in both build and test steps

This means we avoid doing a type checking pass twice
This commit is contained in:
Henry Mercer
2025-08-22 12:30:55 +01:00
parent 4da503e0f5
commit 8a3bfe665b
18 changed files with 96 additions and 112 deletions

View File

@@ -3,9 +3,10 @@
/* Basic Options */
"lib": ["ES2021"],
"target": "ES2021",
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"noEmit": true, /* Do not emit outputs. */
"sourceMap": true, /* Generates corresponding '.map' file. */
"module": "commonjs",
"outDir": "./build",
"rootDir": "./src",
"sourceMap": true,
/* Strict Type-Checking Options */
"strict": true, /* Enable all strict type-checking options. */