mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-04-25 22:40:30 -05:00
19 lines
397 B
JavaScript
19 lines
397 B
JavaScript
import { defineConfig } from "eslint/config";
|
|
|
|
export default defineConfig([
|
|
{
|
|
languageOptions: {
|
|
ecmaVersion: 6,
|
|
sourceType: "module",
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
// Enable import assertions
|
|
ecmaFeatures: {
|
|
// This doesn't fully support it in base ESLint parser
|
|
}
|
|
}
|
|
},
|
|
},
|
|
]);
|