summaryrefslogtreecommitdiff
path: root/tests/type-consistency/tsconfig.json
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2025-11-08 17:30:19 -0800
committerKai Stevenson <kai@kaistevenson.com>2025-11-08 17:32:01 -0800
commit8442ed67628e5d51e02b876d0f27479f9215bf0a (patch)
treee63c4afce5c29bb2e1edbf5899291508e211d1fe /tests/type-consistency/tsconfig.json
parentb32604eef0cec59798cdfea53b82766819429717 (diff)
add more tests, fix issues, add support for booleans
Diffstat (limited to 'tests/type-consistency/tsconfig.json')
-rw-r--r--tests/type-consistency/tsconfig.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/type-consistency/tsconfig.json b/tests/type-consistency/tsconfig.json
new file mode 100644
index 0000000..e1421ab
--- /dev/null
+++ b/tests/type-consistency/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "include": ["generated/**/*.ts"],
+ "compilerOptions": {
+ "target": "ES2022",
+ "module": "nodenext",
+ "moduleResolution": "nodenext",
+ "lib": ["ES2022", "dom"],
+ "outDir": "dist",
+ "strict": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "declaration": true,
+ "declarationMap": true
+ }
+}