project scaffolding

This commit is contained in:
nai-degen
2023-04-08 02:34:21 -05:00
committed by nai-degen
parent d1d9e03c5f
commit d98ae67c91
6 changed files with 1458 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"outDir": "build"
},
"include": ["src"],
"exclude": ["node_modules"]
}