mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-05 15:23:12 +00:00
13 lines
218 B
JavaScript
13 lines
218 B
JavaScript
|
|
module.exports = {
|
||
|
|
parserOptions: {
|
||
|
|
tsconfigRootDir: __dirname,
|
||
|
|
project: "./tsconfig.dev.json"
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
||
|
|
},
|
||
|
|
globals: {
|
||
|
|
process: true
|
||
|
|
}
|
||
|
|
};
|