Fix string-templates tsc build

This commit is contained in:
adrinr 2023-03-03 10:43:26 +01:00
parent be06f640f0
commit 7c83833541
2 changed files with 2 additions and 2 deletions

0
packages/cli/src/index.ts Normal file → Executable file
View File

View File

@ -1,11 +1,11 @@
{
"include": ["src/**/*"],
"compilerOptions": {
"allowJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"esModuleInterop": true
"esModuleInterop": true,
"types": ["node", "jest"]
}
}