mirror of https://github.com/aldy505/sql-dsl.git
21 lines
293 B
JavaScript
21 lines
293 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
node: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'xo-space',
|
||
|
],
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12,
|
||
|
sourceType: 'module',
|
||
|
},
|
||
|
plugins: [
|
||
|
'@typescript-eslint',
|
||
|
],
|
||
|
rules: {
|
||
|
},
|
||
|
};
|