aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..4d69989
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,18 @@
1{
2 "compilerOptions": {
3 "module": "esnext",
4 "target": "esnext",
5 "moduleResolution": "node",
6 "esModuleInterop": true,
7 "allosSyntheticDefaultImports": true,
8 "strict": true,
9 "noImplicitOverride": true,
10 "noImplicitReturns": true,
11 "exactOptionalPropertyTypes": true,
12 "isolatedModules": true,
13 "skipLibCheck": true,
14 "lib": [
15 "ESNext"
16 ]
17 }
18}