aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..274df67
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,30 @@
+{
+ "compilerOptions": {
+ "outDir": "./build",
+ "target": "ES2020",
+ "module": "commonjs",
+ "lib": ["ES2020", "dom"],
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "allowSyntheticDefaultImports": true,
+ "allowJs": false,
+ "alwaysStrict": true,
+ "sourceMap": true,
+ "forceConsistentCasingInFileNames": true,
+ "noFallthroughCasesInSwitch": true,
+ "noImplicitReturns": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noImplicitAny": false,
+ "noImplicitThis": false,
+ "strictNullChecks": false,
+ "experimentalDecorators": true,
+ "importHelpers": true,
+ "declaration": true,
+ "watch": false,
+ "emitDecoratorMetadata": true,
+ "esModuleInterop": true,
+ "removeComments": false
+ },
+ "include": ["src/**/*", "test/**/*"]
+}