mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-21 23:32:27 +00:00
jsconfig for a bit of autocompletion and intellisense
Fixes #1460 Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
This commit is contained in:
parent
c6794fd0be
commit
b7a9f26222
1 changed files with 20 additions and 0 deletions
20
frontend/jsconfig.json
Normal file
20
frontend/jsconfig.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"checkJs": false,
|
||||
"baseUrl": "src",
|
||||
"jsx": "react",
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"paths": {
|
||||
"*": [
|
||||
"*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue