jsconfig for a bit of autocompletion and intellisense

This commit is contained in:
Taloth Saldono 2019-08-19 23:54:17 +02:00
parent 224fe32b72
commit 9b8ec78502
1 changed files with 20 additions and 0 deletions

20
frontend/jsconfig.json Normal file
View File

@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "es6",
"checkJs": false,
"baseUrl": "src",
"jsx": "react",
"module": "commonjs",
"moduleResolution": "node",
"paths": {
"*": [
"*"
]
}
},
"include": [
"./src/**/*"
],
"exclude": [
]
}