aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-22 19:17:07 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-22 19:37:20 +0100
commit929171dcba75b51be464e12906801c875ab7647a (patch)
treeae59d77dd1a8dda3ec8118f8f810a783c9103655 /tsconfig.json
downloadsophie-929171dcba75b51be464e12906801c875ab7647a.tar.gz
sophie-929171dcba75b51be464e12906801c875ab7647a.tar.zst
sophie-929171dcba75b51be464e12906801c875ab7647a.zip
Initial commit
Project skeleton based on https://github.com/cawa-93/vite-electron-builder but we use react instead of vue and yarn instead of npm.
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}