Ghost/ghost/admin/jsconfig.json
Kevin Ansfield 6f8dc6b29e
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
2023-03-08 10:37:49 +00:00

15 lines
237 B
JSON

{
"compilerOptions": {
"target":"es6",
"experimentalDecorators":true
},
"exclude": [
"node_modules",
"bower_components",
"tmp",
"vendor",
".git",
"dist"
]
}