0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Added admin/jsconfig.json to fix vscode decorator warnings

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
This commit is contained in:
Kevin Ansfield 2023-03-08 10:37:40 +00:00
parent 46508b7299
commit 6f8dc6b29e
No known key found for this signature in database

14
ghost/admin/jsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"target":"es6",
"experimentalDecorators":true
},
"exclude": [
"node_modules",
"bower_components",
"tmp",
"vendor",
".git",
"dist"
]
}