aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-08 21:36:43 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-09 19:53:03 +0100
commitd07e7b834831230b53860d0919a68edc2d36193d (patch)
treea1f2a021563ddff54f33341c475fc6c6eb787388 /tsconfig.json
parentNew configurations based on review comments (WIP) (diff)
downloadsophie-d07e7b834831230b53860d0919a68edc2d36193d.tar.gz
sophie-d07e7b834831230b53860d0919a68edc2d36193d.tar.zst
sophie-d07e7b834831230b53860d0919a68edc2d36193d.zip
build: Eslint fixes for multi-module project
Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json27
1 files changed, 11 insertions, 16 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 255f334..627bed2 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,19 +1,14 @@
1{ 1{
2 "extends": "./config/tsconfig.base.json",
2 "compilerOptions": { 3 "compilerOptions": {
3 "module": "esnext", 4 "noEmit": true
4 "target": "esnext", 5 },
5 "moduleResolution": "node", 6 "include": [
6 "esModuleInterop": true, 7 "config/**/*.js",
7 "allowSyntheticDefaultImports": true, 8 "config/**/*.cjs",
8 "strict": true, 9 "scripts/**/*.js",
9 "noImplicitOverride": true, 10 ".electron-builder.config.cjs",
10 "noImplicitReturns": true, 11 ".eslintrc.cjs",
11 "exactOptionalPropertyTypes": true, 12 "jest.config.js"
12 "isolatedModules": true, 13 ]
13 "skipLibCheck": true,
14 "checkJs": true,
15 "lib": [
16 "esnext"
17 ]
18 }
19} 14}