From 0cce8e9ce739b7584f181eb36c98c2f9ef4be755 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Mon, 6 Feb 2017 17:05:50 -0600 Subject: [PATCH] tsconfig for plugins --- scripts/build/plugin-tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 scripts/build/plugin-tsconfig.json diff --git a/scripts/build/plugin-tsconfig.json b/scripts/build/plugin-tsconfig.json new file mode 100644 index 000000000..f6d471166 --- /dev/null +++ b/scripts/build/plugin-tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "declaration": true, + "stripInternal": true, + "experimentalDecorators": true, + "module": "es2015", + "moduleResolution": "node", + "outDir": "../../dist/packages-dist/{{PLUGIN}}", + "paths": { + "@ionic-native/core": ["../../dist/packages-dist/core"] + }, + "rootDir": ".", + "sourceMap": true, + "inlineSources": true, + "target": "es5", + "skipLibCheck": true, + "lib": ["es2015", "dom"] + }, + "files": [ + "index.ts" + ] +}