aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-03-16 22:34:43 +0100
committerMaksymilian Jopek <maks@jopek.eu>2022-03-16 22:34:43 +0100
commitf8c006414aec99c90558587dbe08cf1705ed44f7 (patch)
tree2f52ea7f071f91e5e53e4dfdde9cdd2b8d7cd4dc /tsconfig.json
downloadboules-f8c006414aec99c90558587dbe08cf1705ed44f7.tar.gz
boules-f8c006414aec99c90558587dbe08cf1705ed44f7.tar.zst
boules-f8c006414aec99c90558587dbe08cf1705ed44f7.zip
Initial commit w/ v0.0.1
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..1885c8f
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,18 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ESNext", "DOM"],
+ "moduleResolution": "Node",
+ "strict": true,
+ "sourceMap": true,
+ "resolveJsonModule": true,
+ "esModuleInterop": true,
+ "noEmit": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noImplicitReturns": true
+ },
+ "include": ["src"]
+}