15 lines
333 B
JSON
15 lines
333 B
JSON
// TypeScript config for ESLint configuration (eslint.config.mjs)
|
|
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "nodenext",
|
|
"module": "nodenext",
|
|
"lib": ["esnext"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["./eslint.config.mjs"]
|
|
}
|