mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-07 16:23:09 +00:00
21 lines
326 B
JavaScript
21 lines
326 B
JavaScript
|
|
module.exports = {
|
||
|
|
parserOptions: {
|
||
|
|
tsconfigRootDir: __dirname,
|
||
|
|
project: "./tsconfig.dev.json"
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
||
|
|
},
|
||
|
|
globals: {
|
||
|
|
process: true
|
||
|
|
},
|
||
|
|
overrides: [
|
||
|
|
{
|
||
|
|
files: ["*.js"],
|
||
|
|
rules: {
|
||
|
|
"no-console": "error"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|
||
|
|
};
|