DEV: Add jsconfig (#17800)

This enables intelligent IDE features like "Go To Reference" to function correctly within the Discourse core codebase
This commit is contained in:
Peter Wagenet
2022-08-04 14:50:47 -07:00
committed by GitHub
parent e0ece3a77e
commit d0cbc61619
7 changed files with 79 additions and 0 deletions

10
jsconfig.base.json Normal file
View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "es2020",
"module": "amd",
"experimentalDecorators": true,
},
"exclude": [
"**/node_modules"
],
}