feat: add snjs package

This commit is contained in:
Karol Sójko
2022-07-06 14:04:18 +02:00
parent 321a055bae
commit 0e40469e2f
296 changed files with 46109 additions and 187 deletions

View File

@@ -0,0 +1,31 @@
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"baseUrl": ".",
"declaration": true,
"declarationDir": "../dist/@types",
"emitDeclarationOnly": true,
"esModuleInterop": true,
"isolatedModules": true,
"moduleResolution": "node",
"newLine": "lf",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"outDir": "../dist/@types",
"strict": true,
"strictNullChecks": true,
"target": "esnext",
"paths": {
"@Lib/*": ["*"],
"@Services/*": ["Services/*"]
}
},
"exclude": ["../package.json"]
}