summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOskar <oskar@mullvad.net>2024-11-05 08:21:32 +0100
committerOskar <oskar@mullvad.net>2024-11-14 16:43:36 +0100
commitb6de2642835ead605dc15c92656430427d3abdd5 (patch)
tree6a108084a18050f831f9b2db09074a369357799c
parent77ac4d061859807d63cab72725a6a182af3e3c4d (diff)
downloadmullvadvpn-b6de2642835ead605dc15c92656430427d3abdd5.tar.xz
mullvadvpn-b6de2642835ead605dc15c92656430427d3abdd5.zip
Move tsconfig to workspace root
-rw-r--r--desktop/packages/mullvad-vpn/tsconfig.json8
-rw-r--r--desktop/tsconfig.json11
2 files changed, 12 insertions, 7 deletions
diff --git a/desktop/packages/mullvad-vpn/tsconfig.json b/desktop/packages/mullvad-vpn/tsconfig.json
index c717e76571..3f553cf263 100644
--- a/desktop/packages/mullvad-vpn/tsconfig.json
+++ b/desktop/packages/mullvad-vpn/tsconfig.json
@@ -1,21 +1,15 @@
{
+ "extends": "../../tsconfig.json",
"compilerOptions": {
- "alwaysStrict": true,
"esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"module": "commonjs",
- "noImplicitReturns": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
"outDir": "build",
- "resolveJsonModule": true,
"rootDirs": [
"src",
"assets"
],
"skipLibCheck": true,
- "strict": true,
"target": "es2021",
"lib": [
"es2021",
diff --git a/desktop/tsconfig.json b/desktop/tsconfig.json
new file mode 100644
index 0000000000..937cc797ad
--- /dev/null
+++ b/desktop/tsconfig.json
@@ -0,0 +1,11 @@
+{
+ "compilerOptions": {
+ "strict": true,
+ "alwaysStrict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noImplicitReturns": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "resolveJsonModule": true
+ }
+}