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:
parent
46508b7299
commit
6f8dc6b29e
1 changed files with 14 additions and 0 deletions
14
ghost/admin/jsconfig.json
Normal file
14
ghost/admin/jsconfig.json
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target":"es6",
|
||||||
|
"experimentalDecorators":true
|
||||||
|
},
|
||||||
|
"exclude": [
|
||||||
|
"node_modules",
|
||||||
|
"bower_components",
|
||||||
|
"tmp",
|
||||||
|
"vendor",
|
||||||
|
".git",
|
||||||
|
"dist"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue