Template of Type script library
Some checks failed
CI / build (push) Failing after 20s

This commit is contained in:
Andrey Kernichniy 2026-03-03 21:52:28 +07:00
commit 22fa4c6df4
18 changed files with 1511 additions and 0 deletions

21
tsconfig.json Normal file
View file

@ -0,0 +1,21 @@
{
"compilerOptions": {
"alwaysStrict": true,
"strict": false,
"target": "ES2022",
"lib": ["dom", "ES2022"],
"module": "ES2022",
"declaration": true,
"resolveJsonModule": true,
"allowJs": true,
"sourceMap": true,
"esModuleInterop": true,
"moduleResolution": "node",
"skipLibCheck": true,
"experimentalDecorators": false,
"strictNullChecks": false,
"outDir": "./dist"
},
"include": ["./lib/src/**/*"],
"exclude": ["src/**/*.test.ts"]
}