diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..ca72f7b --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,16 @@ +{ + "env": { + "browser": true, + "es2021": true, + "node": true + }, + "extends": "standard", + "overrides": [ + ], + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + } +} diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..14c3253 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "module": "ES2020", + "target": "ES2020", + "checkJs": true, + "moduleResolution": "node" + }, + "include": ["src", "examples"], + "exclude": ["node_modules"] +}