Skip to content

Commit 13c5173

Browse files
authored
Merge pull request #4 from lukas-reineke/webpack
Webpack
2 parents f4b57f8 + 0cbacb3 commit 13c5173

13 files changed

+5005
-487
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"rules": {
3+
"@typescript-eslint/no-explicit-any": "warn",
4+
"@typescript-eslint/explicit-function-return-type": "off"
5+
},
6+
"extends": [
7+
"plugin:@typescript-eslint/recommended",
8+
"prettier",
9+
"@adgorithmics/eslint-config-base"
10+
],
11+
"parser": "@typescript-eslint/parser",
12+
"plugins": ["@typescript-eslint"],
13+
"env": {
14+
"node": true,
15+
"browser": true
16+
},
17+
"parserOptions": {
18+
"sourceType": "module"
19+
}
20+
}

index.js

Lines changed: 0 additions & 48 deletions
This file was deleted.

index.node.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.web.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)