pdf package

This commit is contained in:
2022-01-13 18:38:02 +01:00
parent 25106547e9
commit efbc2f3b2e
6 changed files with 251 additions and 43 deletions

View File

@@ -1,15 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts"
]
}
"include": ["demo-api/**/*"],
"compilerOptions": {
"typeRoots": ["."],
"module": "commonjs",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true
},
"files": ["index.d.ts"]
}