From 95e6d0b92db8fe3a66a4656baa10ce16b062ee07 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 23 Jan 2018 15:08:21 -0500 Subject: [PATCH] tsconfig for building main without webpack --- tsconfig.main.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tsconfig.main.json diff --git a/tsconfig.main.json b/tsconfig.main.json new file mode 100644 index 00000000..d2142b0e --- /dev/null +++ b/tsconfig.main.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "moduleResolution": "node", + "noImplicitAny": true, + //"module": "es6", + //"target": "ES2016", + "allowJs": true, + "sourceMap": false, + "types": [], + "baseUrl": ".", + "paths": { + "jslib/*": [ "node_modules/@bitwarden/jslib/src/*" ] + }, + "outDir": "build" + }, + "files": [ + "src/main.ts" + ], + "exclude": [ + "node_modules", + "dist", + "build" + ] +}