Add JS config for VS Code

This commit is contained in:
Vortrex
2021-02-05 01:35:19 -06:00
parent ed5b0c516f
commit 45b13017bb

12
scripts/jsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"moduleResolution": "classic"
},
"include": [
"server/*",
"client/*",
"third-party/*"
]
}