mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
extends: ["custom"],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
settings: {
|
||
|
"import/resolver": {
|
||
|
typescript: {},
|
||
|
node: {
|
||
|
moduleDirectory: ["node_modules", "."],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
rules: {}
|
||
|
}
|