diff tsconfig.json @ 31:e54941d93356

mostly config fixes to try to make this pkg usable by others (not working yet)
author drewp@bigasterisk.com
date Tue, 17 Dec 2019 23:13:01 -0800
parents 45ed53428e74
children b82c05e22d9a
line wrap: on
line diff
--- a/tsconfig.json	Sun Dec 15 21:21:28 2019 -0800
+++ b/tsconfig.json	Tue Dec 17 23:13:01 2019 -0800
@@ -3,29 +3,28 @@
         "alwaysStrict": true,
         "declaration": true,
         "experimentalDecorators": true,
-        "lib": [ "es6", "dom" ],
+        "lib": [
+            "es6",
+            "dom"
+        ],
         "module": "commonjs",
         "noFallthroughCasesInSwitch": true,
         "noImplicitAny": true,
         "noImplicitReturns": true,
         "noImplicitThis": true,
-        "outDir": "./build/js",
-        // "strict": true,
+        "declarationDir": "./build",
+        "outDir": "./build/outDir_seems_unused",
+        "strict": true,
         "strictFunctionTypes": true,
         "strictNullChecks": true,
         "strictPropertyInitialization": true,
         "target": "es6",
-        // "allowSyntheticDefaultImports": true,
-        // "baseUrl": "./",
-        // "emitDecoratorMetadata": true,
         "esModuleInterop": true,
-        // "noUnusedLocals": true,
-        // "noUnusedParameters": true,
-         "rootDir": ".",
-        "types": ["jest"],
-        "sourceMap": true
-    },
-    "include": [
-        "src/**/*.ts"
-    ]
+        "types": [
+            "jest"
+        ],
+        "sourceMap": true,
+        "baseUrl": "src",
+        
+    }
 }
\ No newline at end of file