Ghost/jsconfig.json
Hannah Wolfe 7f16533d4f
Added jsconfig.json to enable type checking
- we're experimenting with using a simple jsconfig file to enable type checking for Ghost + related repos
 - this should allow us all to see where we have typing issues, without requiring everything to be strictly typed or generating type files
2021-06-09 12:20:59 +01:00

14 lines
224 B
JSON

{
"include": ["core/**/*.js"],
"compilerOptions": {
"checkJs": true,
"module": "commonjs",
"target": "es2018",
"moduleResolution": "node"
},
"exclude": [
"core/built",
"core/client"
]
}