summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorRaphael Kabo <raphaelkabo@hey.com>2023-05-12 16:54:06 +0100
committerRaphael Kabo <raphaelkabo@hey.com>2023-05-12 16:54:06 +0100
commitbfe708d48f603998a1f2c4cad4a6f9f8683dc18f (patch)
treebc0402abb6fd999f00e2b180144a34c851e36abf /tsconfig.json
parent69b4c854b399554ed413cc7ff9d625aee5053927 (diff)
Migrate to Typescript
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..9d7b7ab
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,22 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "module": "ES2020",
+ "allowJs": true,
+ "checkJs": true,
+ "removeComments": true,
+ "resolveJsonModule": true,
+ "typeRoots": ["./node_modules/@types"],
+ "sourceMap": true,
+ "outDir": "dist",
+ "strict": true,
+ "baseUrl": ".",
+ "forceConsistentCasingInFileNames": true,
+ "esModuleInterop": true,
+ "experimentalDecorators": true,
+ "emitDecoratorMetadata": true,
+ "moduleResolution": "nodenext",
+ "skipLibCheck": true,
+ },
+ "include": ["src/**/*"],
+} \ No newline at end of file