Initial commit

This commit is contained in:
Tera << 8 2024-04-16 09:03:21 -04:00 committed by GitHub
commit a4ea6406e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 623 additions and 0 deletions

22
tsconfig.json Normal file
View file

@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "es2020",
"module": "es2022",
"moduleResolution": "node",
"outDir": "./out",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"strictPropertyInitialization": false,
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}