mirror of https://github.com/waku-org/js-waku.git
14 lines
223 B
JavaScript
14 lines
223 B
JavaScript
|
module.exports = {
|
||
|
parserOptions: {
|
||
|
tsconfigRootDir: __dirname,
|
||
|
project: "./tsconfig.dev.json"
|
||
|
},
|
||
|
env: {
|
||
|
node: true,
|
||
|
},
|
||
|
rules: {},
|
||
|
globals: {
|
||
|
process: true
|
||
|
}
|
||
|
};
|
||
|
|