6f8dc6b29e
no issue - vscode started adding warnings to all uses of decorators in Admin which was rather annoying - added `jsconfig.json` with the necessary compiler options and an exclude list to keep performance happy
15 lines
237 B
JSON
15 lines
237 B
JSON
{
|
|
"compilerOptions": {
|
|
"target":"es6",
|
|
"experimentalDecorators":true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"bower_components",
|
|
"tmp",
|
|
"vendor",
|
|
".git",
|
|
"dist"
|
|
]
|
|
}
|