feat: add tsconfig.json

This commit is contained in:
gitadmin 2026-05-02 13:07:42 +00:00
parent e071b4df82
commit 1c64996a78

15
tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": ["./**/*.ts"],
"exclude": ["node_modules"]
}