mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-23 12:56:57 +00:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
module.exports = {
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
};
|