From 84172a12924e173680fa02205954f6305e0d44aa Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Tue, 19 Nov 2019 13:40:17 +0200 Subject: Initial commit - project skeleton --- tsconfig.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..0133563 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "moduleResolution": "node", + "noImplicitAny": true, + "removeComments": false, + "sourceMap": true, + "declaration": true, + "newLine": "LF", + "noEmitOnError": true, + "rootDir": "src", + "outDir": "dist", + "lib": ["es2015"], + }, + "include": ["src/**/*.ts"], + "exclude": ["src/**/*.spec.ts"] +} -- cgit v1.2.3