build(refactor): better project organization

This commit is contained in:
Michael Shick 2020-07-07 10:51:15 -04:00
parent 5cd99bf9c1
commit e2229d7f55
No known key found for this signature in database
GPG key ID: ADF5BC9704BB4A61
14 changed files with 9869 additions and 74 deletions

View file

@ -1,8 +1,8 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"lib": ["es2015", "es2017"],
"target": "ES2018",
"lib": ["ES2020"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
@ -11,8 +11,9 @@
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"rootDir": "./src",
"outDir": "./lib"
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules", "**/*.test.ts"]
}