13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
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
|