mirror of
https://github.com/waku-org/js-waku.git
synced 2025-01-10 20:46:52 +00:00
dc3774c0ed
* merge: master * fix: CI * use: js script instead of shell script to run precheck and mocha * use `console.log` instead of `debug.log` for `run-tests.js`
13 lines
222 B
JavaScript
13 lines
222 B
JavaScript
module.exports = {
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: "./tsconfig.dev.json",
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
},
|
|
globals: {
|
|
process: true,
|
|
},
|
|
};
|