Archived
1
0

chore: replace eslint-import-resolver-alias with eslint-import-resolver-typescript (#4546)

Co-authored-by: Joe Previte <jjprevite@gmail.com>
This commit is contained in:
JounQin
2021-12-08 05:39:01 +08:00
committed by GitHub
parent d15731a570
commit 6c9c84090e
9 changed files with 40 additions and 20 deletions

View File

@ -1,4 +1,4 @@
import bodyParser from "body-parser"
import * as bodyParser from "body-parser"
import * as express from "express"
import * as http from "http"
import nodeFetch from "node-fetch"

View File

@ -0,0 +1,9 @@
module.exports = {
settings: {
"import/resolver": {
typescript: {
project: __dirname,
},
},
},
}

View File

@ -1,5 +0,0 @@
settings:
import/resolver:
alias:
map:
- [code-server, ./typings/pluginapi.d.ts]