mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-11 18:35:22 +03:00
7f16533d4f
- 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
14 lines
224 B
JSON
14 lines
224 B
JSON
{
|
|
"include": ["core/**/*.js"],
|
|
"compilerOptions": {
|
|
"checkJs": true,
|
|
"module": "commonjs",
|
|
"target": "es2018",
|
|
"moduleResolution": "node"
|
|
},
|
|
"exclude": [
|
|
"core/built",
|
|
"core/client"
|
|
]
|
|
}
|