From eca84c8b6964af29948510a02ebfeb5f23244921 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Mon, 9 Mar 2020 11:57:39 -0500 Subject: Inital commit --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ece24c7 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "lib": ["ES2017"], + "target": "es6", + "module": "commonjs", + "declaration": true, + "outDir": "dist", + "declarationDir": "dts", + "strict": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "esModuleInterop": true, + "sourceMap": true + }, + "include": ["src"], + "exclude": ["node_modules"] +} -- cgit v1.2.3