Added tsconfig

This commit is contained in:
Nicolai Ort 2021-01-30 17:22:17 +01:00
parent 278c56386b
commit e1f03788db
1 changed files with 19 additions and 0 deletions

19
tsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"rootDir": "./src",
"outDir": "./dist",
"esModuleInterop": true,
"strict": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": false
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
]
}