summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorRaphael <mail@raphaelkabo.com>2023-10-08 19:26:04 +0100
committerGitHub <noreply@github.com>2023-10-08 19:26:04 +0100
commit44e150bc7f8391b56b78a0697dbd128a8bf8be7b (patch)
treeef065e69228453d5d49b886157a4a88ed3540474 /tsconfig.json
parent9ef8e220b4fb582d620016d293b340a63ec97cff (diff)
parent608532d24d868d939fd2cef6302d8d5089a81ee4 (diff)
Merge pull request #112 from lowercasename/rk/typescript
Typescript migration
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 4e6ba76..6d59c57 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -10,7 +10,7 @@
"sourceMap": true,
"outDir": "dist",
"strict": true,
- "baseUrl": ".",
+ "baseUrl": "./",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"experimentalDecorators": true,
@@ -18,5 +18,5 @@
"moduleResolution": "nodenext",
"skipLibCheck": true
},
- "include": ["src/**/*"]
+ "include": ["./src/**/*"]
}