mirror of
https://github.com/jakejarvis/npm-module-template.git
synced 2025-04-26 08:45:24 -04:00
20 lines
323 B
JSON
20 lines
323 B
JSON
{
|
|
"extends": [
|
|
"@jakejarvis/eslint-config",
|
|
"plugin:compat/recommended",
|
|
"plugin:import/recommended"
|
|
],
|
|
"parser": "@babel/eslint-parser",
|
|
"parserOptions": {
|
|
"requireConfigFile": false
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"ignorePatterns": [
|
|
"*.d.ts",
|
|
"dist/**"
|
|
]
|
|
}
|