401196d62a
* chore: add swap files to ignores * chore: set up typescript deps * refactor: rough conversion * chore: linting config * refactor: isolate untestable bits * chore: runtime mapping * chore: move tests
13 lines
383 B
JavaScript
13 lines
383 B
JavaScript
module.exports = {
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["@typescript-eslint"],
|
|
extends: [
|
|
"@tophat/eslint-config/base",
|
|
"@tophat/eslint-config/jest",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
settings: {
|
|
'import/resolver': { node: { extensions: ['.ts'] }}
|
|
}
|
|
}
|