From b14474450944e1b14adce3c65ec255dad1de39a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Moskal?= Date: Fri, 15 Dec 2017 22:29:31 +0000 Subject: [PATCH] Add tsconfig.json for easier library editing (#96) --- libs/tsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libs/tsconfig.json diff --git a/libs/tsconfig.json b/libs/tsconfig.json new file mode 100644 index 00000000..f468daaa --- /dev/null +++ b/libs/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "es5", + "noImplicitAny": true, + "noImplicitReturns": true, + "rootDir": ".", + "newLine": "LF", + "sourceMap": false, + "types": [] + } +}