12 lines
157 B
JavaScript
12 lines
157 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2022: true,
|
|
node: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2022,
|
|
},
|
|
extends: ['next'],
|
|
};
|