1d6b8c1875
refs https://github.com/TryGhost/Team/issues/870 - currently, a handful of packages in this repo generate type declarations when building - we're aiming to go more in the direction of better inline jsdoc, and we want to clean up all generated files and use of external types - this commit removes the `typescript` dependency, removes the pretest commands that run the builds, and cleans up anywhere where we configure types
15 lines
248 B
JSON
15 lines
248 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es6"
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|