diff --git a/bindings/node/jest.config.js b/bindings/node/jest.config.js index 74d11e33..9ba86ecf 100644 --- a/bindings/node/jest.config.js +++ b/bindings/node/jest.config.js @@ -1,3 +1,4 @@ +/* eslint-disable prettier/prettier */ // For a detailed explanation regarding each configuration property, visit: // https://jestjs.io/docs/en/configuration.html @@ -181,7 +182,12 @@ module.exports = { // verbose: null, // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode - // watchPathIgnorePatterns: [], + watchPathIgnorePatterns: [ + "/node_modules/", + "/native/", + "/dist/", + "/build/" + ], // Whether to use watchman for file crawling // watchman: true, diff --git a/bindings/node/tsconfig.json b/bindings/node/tsconfig.json index 180e0684..9de768e8 100644 --- a/bindings/node/tsconfig.json +++ b/bindings/node/tsconfig.json @@ -7,7 +7,7 @@ // "incremental": true, /* Enable incremental compilation */ "target": "ES2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ - // "lib": [], /* Specify library files to be included in the compilation. */ + "lib": [], /* Specify library files to be included in the compilation. */ // "allowJs": true, /* Allow javascript files to be compiled. */ // "checkJs": true, /* Report errors in .js files. */ // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */