mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
module.exports = {
|
|
extends: '../../config/.eslintrc.js',
|
|
parserOptions: {
|
|
project: 'tsconfig.json',
|
|
// to make vscode-eslint work with monorepo
|
|
// https://github.com/typescript-eslint/typescript-eslint/issues/251#issuecomment-463943250
|
|
tsconfigRootDir: __dirname
|
|
}
|
|
};
|