We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b1d61 commit d86cd24Copy full SHA for d86cd24
package.json
@@ -34,14 +34,13 @@
34
"test": "npm run build && node test"
35
},
36
"devDependencies": {
37
+ "@rollup/plugin-node-resolve": "^11.2.0",
38
"@typescript-eslint/eslint-plugin": "^4.14.2",
39
"@typescript-eslint/parser": "^4.14.2",
40
"eslint": ">=6.0.0",
41
"rollup": "^2",
42
+ "sourcemap-codec": "1.4.8",
43
"svelte": "^3.2.0",
44
"typescript": "^4.0.0"
- },
- "dependencies": {
45
- "sourcemap-codec": "^1.4.8"
46
}
47
rollup.config.js
@@ -1,4 +1,7 @@
1
+import node_resolve from '@rollup/plugin-node-resolve';
2
+
3
export default {
4
input: 'src/index.js',
5
output: { file: 'index.js', format: 'cjs' },
6
+ plugins: [ node_resolve() ],
7
};
0 commit comments