summaryrefslogtreecommitdiff
path: root/client/tsconfig.json
diff options
context:
space:
mode:
authorSOGYO\bvdoord <bvdoord@sogyo.nl>2021-01-26 11:22:58 +0100
committerSOGYO\bvdoord <bvdoord@sogyo.nl>2021-01-26 11:22:58 +0100
commitf382ec567e1292cedee7c01e721ddc38bdc4dc4e (patch)
tree3012b3343d24c4d52f4370ca1f2efc4c78dbd84f /client/tsconfig.json
parent9fb9913bc5ccc49d738481fa71c5ba75c43ed532 (diff)
Front-end met Snowpack toegevoegd
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r--client/tsconfig.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
new file mode 100644
index 0000000..0e93608
--- /dev/null
+++ b/client/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "include": ["src", "types"],
+ "compilerOptions": {
+ "module": "esnext",
+ "target": "esnext",
+ "moduleResolution": "node",
+ "jsx": "preserve",
+ "baseUrl": "./",
+ /* paths - If you configure Snowpack import aliases, add them here. */
+ "paths": {},
+ /* noEmit - Snowpack builds (emits) files, not tsc. */
+ "noEmit": true,
+ /* Additional Options */
+ "strict": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true,
+ "resolveJsonModule": true,
+ "allowSyntheticDefaultImports": true,
+ "importsNotUsedAsValues": "error"
+ }
+}