seems to work somewhat

This commit is contained in:
Robin Appelman 2020-05-05 18:40:44 +02:00
commit 7efed83afd
12 changed files with 7432 additions and 0 deletions

18
tsconfig.json Normal file
View file

@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es2016",
"noImplicitAny": false,
"inlineSourceMap": true,
"outDir": "./build",
"types": ["node"],
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"typeRoots": [ "./node_modules/@types"]
},
"compileOnSave": true,
"include": [
"src/**/*",
]
}