adjusting folder structure

This commit is contained in:
Luke Hagar
2023-04-06 21:45:58 -05:00
parent 9c79c064cf
commit 706c850fa7
7 changed files with 360 additions and 1 deletions

22
tsconfig.json Normal file
View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"declaration": true,
"target": "ES5",
"module": "CommonJS",
"noImplicitAny": true,
"outDir": "dist",
"rootDir": ".",
"lib": [
"es6",
"dom"
],
"typeRoots": [
"node_modules/@types"
],
"sourceMap": true
},
"exclude": [
"dist",
"node_modules"
]
}