diff options
Diffstat (limited to 'backend/tsconfig.json')
| -rw-r--r-- | backend/tsconfig.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/backend/tsconfig.json b/backend/tsconfig.json new file mode 100644 index 0000000..725f746 --- /dev/null +++ b/backend/tsconfig.json @@ -0,0 +1,25 @@ +{
+ "compilerOptions": {
+ "module": "commonjs",
+ "declaration": true,
+ "removeComments": true,
+ "emitDecoratorMetadata": true,
+ "experimentalDecorators": true,
+ "allowSyntheticDefaultImports": true,
+ "target": "es2017",
+ "sourceMap": true,
+ "outDir": "./dist",
+ "baseUrl": "./",
+ "incremental": true,
+ "skipLibCheck": true
+ },
+ "include": [
+ "src/**/*"
+ ],
+ "exclude": [
+ "node_modules",
+ "dist",
+ "test"
+ ]
+}
+
|
