non-functional atm

This commit is contained in:
Core 2022-01-02 04:43:36 +00:00
parent 84e1ff1d5f
commit 1eb2f7e463
No known key found for this signature in database
GPG key ID: 1B77805746C47C28
6 changed files with 188 additions and 30 deletions

17
tsconfig.json Normal file
View file

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"noImplicitAny": true,
"strict": true,
"sourceMap": true,
"outDir": "./build",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
}
},
"include": [
"src/**/*"
]
}