From a8db742ae36f144c404d8325f5cb7d9dde5097be Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Thu, 25 Mar 2021 14:00:13 +0000 Subject: [PATCH] Add 'tsconfig.json' --- tsconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..637b913 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "declaration": true, + "outDir": "./lib", + "strict": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true + }, + "include": ["src"], + "exclude": ["node_modules"] +}