You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
436 B
JavaScript
21 lines
436 B
JavaScript
// Copyright (C) 2018-2022 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module.exports = {
|
|
ignorePatterns: [
|
|
'.eslintrc.js',
|
|
'webpack.config.js',
|
|
'jest.config.js',
|
|
'jsdoc.config.js',
|
|
'src/3rdparty/**',
|
|
'node_modules/**',
|
|
'dist/**',
|
|
'tests/**/*.js',
|
|
],
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
};
|