aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMarin Ivanov <[email protected]>2026-01-19 02:41:01 +0200
committerMarin Ivanov <[email protected]>2026-01-19 02:41:01 +0200
commita6bdee992a0e8850b922944a943cdbd907db5e66 (patch)
treedd114f4e6f3fa7b21bf11541e128feef893743a5 /tsconfig.json
parent1fc5ce993a1769a3d0dd5fe2fdb51726f06f804c (diff)
parentb240473b5707857ba2c6a8e6d707c28d1e39da49 (diff)
Merge tag '3.0.1' from mittHEADmaster
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json17
1 files changed, 14 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 8f3c656..8c3bc08 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,5 +1,16 @@
{
- "compilerOptions": {
- "lib": ["es2015"]
- }
+ "compileOnSave": false,
+ "compilerOptions": {
+ "lib": ["es2015"],
+ "strict": true,
+ "noEmit": true,
+ "declaration": true,
+ "moduleResolution": "node",
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ },
+ "include": [
+ "src/*.ts",
+ "test/*.ts"
+ ]
}