Initial commit.

This commit is contained in:
2021-04-23 17:03:29 -07:00
commit 2b1f9ffba1
6 changed files with 47 additions and 0 deletions

16
tsconfig.json Normal file
View File

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2020",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"outDir": "dist",
"sourceMap": true
},
"include": ["src"]
}