onesignal-vue 2.4.1 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/rollup.config.js DELETED
@@ -1,36 +0,0 @@
1
- import typescript from 'rollup-plugin-typescript2';
2
- import babel from 'rollup-plugin-babel';
3
- import commonjs from 'rollup-plugin-commonjs';
4
- import external from 'rollup-plugin-peer-deps-external';
5
- import resolve from 'rollup-plugin-node-resolve';
6
- import url from 'rollup-plugin-url';
7
-
8
- import pkg from './package.json';
9
-
10
- export default {
11
- input: './index.ts',
12
- output: [
13
- {
14
- file: pkg.main,
15
- format: 'cjs',
16
- sourcemap: true,
17
- },
18
- {
19
- file: pkg.module,
20
- format: 'es',
21
- sourcemap: true,
22
- },
23
- ],
24
- plugins: [
25
- external(),
26
- babel({
27
- exclude: 'node_modules/**',
28
- }),
29
- resolve(),
30
- typescript({
31
- rollupCommonJSResolveHack: true,
32
- clean: true,
33
- }),
34
- commonjs(),
35
- ],
36
- };
package/tsconfig.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "dist",
4
- "module": "esnext",
5
- "target": "es6",
6
- "lib": ["es6", "dom", "es2016", "es2017"],
7
- "sourceMap": true,
8
- "allowJs": true,
9
- "declaration": true,
10
- "moduleResolution": "node",
11
- "forceConsistentCasingInFileNames": true,
12
- "noImplicitReturns": true,
13
- "noImplicitThis": true,
14
- "noImplicitAny": false,
15
- "strictNullChecks": false,
16
- "noUnusedLocals": true,
17
- "noUnusedParameters": true,
18
- "allowSyntheticDefaultImports": true,
19
- "downlevelIteration": true,
20
- "skipLibCheck": true
21
- },
22
- "include": ["index.ts"],
23
- "exclude": ["node_modules", "build", "dist", "example"]
24
- }