18 lines
369 B
JavaScript
18 lines
369 B
JavaScript
// Copyright (C) 2021-2022 Intel Corporation
|
|
// Copyright (C) CVAT.ai Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module.exports = {
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
ignorePatterns: [
|
|
'.eslintrc.cjs',
|
|
'webpack.config.js',
|
|
'node_modules/**',
|
|
'dist/**',
|
|
],
|
|
};
|