We upgraded ESLint to version 9 in the y-provider server, which includes several improvements and fixes. This change also involves updating the ESLint configuration files to the new format and ensuring compatibility with the latest ESLint features.
9 lines
166 B
JSON
9 lines
166 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "__tests__"],
|
|
}
|