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