* enable drag and drop in controller * setup svelte v3 workflow and entry point * add ts eslint config and do compatibility fallbacks in API * rewrite replayer in svelte v3 * fix css import * fix fullscreen API
26 lines
529 B
JSON
26 lines
529 B
JSON
{
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2019,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"require-jsdoc": "off",
|
|
"arrow-parens": "off",
|
|
"object-curly-spacing": "off",
|
|
"indent": "off"
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true
|
|
},
|
|
"plugins": ["svelte3", "@typescript-eslint"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.svelte"],
|
|
"processor": "svelte3/svelte3"
|
|
}
|
|
]
|
|
}
|