11 lines
352 B
JavaScript
11 lines
352 B
JavaScript
import { configWebApp, tseslint } from 'eslint-config-cityssm';
|
|
export const config = tseslint.config(...configWebApp, {
|
|
languageOptions: {
|
|
parserOptions: {
|
|
// eslint-disable-next-line @cspell/spellchecker
|
|
project: ['./tsconfig.json', './public/javascripts/tsconfig.json']
|
|
}
|
|
}
|
|
});
|
|
export default config;
|