summaryrefslogtreecommitdiff
path: root/backend/tsconfig.json
diff options
context:
space:
mode:
authorertopogo <erwin.t.pombett@gmail.com>2026-01-18 20:32:59 +0100
committerertopogo <erwin.t.pombett@gmail.com>2026-01-18 20:32:59 +0100
commit09a949092c59856962e4a7d132bc5a5e76fe5e55 (patch)
tree990d6b8f24ff9c6dbc0fcb15b5512067d09b17fd /backend/tsconfig.json
Initial commit: Medusa Backend + storefront + config
Diffstat (limited to 'backend/tsconfig.json')
-rw-r--r--backend/tsconfig.json25
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"
+ ]
+}
+