mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-06 14:50:21 -05:00
22 lines
445 B
JavaScript
22 lines
445 B
JavaScript
|
import baseConfig from '../../eslint.config.js';
|
||
|
import jsoncParser from 'jsonc-eslint-parser';
|
||
|
import globals from 'globals';
|
||
|
|
||
|
export default [
|
||
|
...baseConfig,
|
||
|
{
|
||
|
files: ['**/*.ts'],
|
||
|
rules: {},
|
||
|
languageOptions: {
|
||
|
parserOptions: {
|
||
|
project: './tsconfig.*?.json',
|
||
|
tsconfigRootDir: import.meta.dirname,
|
||
|
},
|
||
|
globals: {
|
||
|
...globals.node,
|
||
|
PluginConfig: 'readonly',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
];
|