aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-25 18:40:23 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-26 15:49:18 +0200
commit8484d3262dfb4fedd8b83f65d053bc21e455008d (patch)
tree9020f95a13ddf11863b0541619dd57ca3f511104 /config
parentchore(deps): bump dependencies (diff)
downloadsophie-8484d3262dfb4fedd8b83f65d053bc21e455008d.tar.gz
sophie-8484d3262dfb4fedd8b83f65d053bc21e455008d.tar.zst
sophie-8484d3262dfb4fedd8b83f65d053bc21e455008d.zip
chore: use node16 moduleResolution where possible
We can't do this in the renderer package, because we need to import MUI files that are not exported (MUI v6 is not ESM yet). Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'config')
-rw-r--r--config/tsconfig.base.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/tsconfig.base.json b/config/tsconfig.base.json
index ff7594e..64522ce 100644
--- a/config/tsconfig.base.json
+++ b/config/tsconfig.base.json
@@ -1,8 +1,8 @@
1{ 1{
2 "compilerOptions": { 2 "compilerOptions": {
3 "module": "esnext", 3 "module": "Node16",
4 "target": "esnext", 4 "target": "es2022",
5 "moduleResolution": "node", 5 "moduleResolution": "Node16",
6 "esModuleInterop": true, 6 "esModuleInterop": true,
7 "allowSyntheticDefaultImports": true, 7 "allowSyntheticDefaultImports": true,
8 "strict": true, 8 "strict": true,
@@ -12,6 +12,6 @@
12 "isolatedModules": true, 12 "isolatedModules": true,
13 "skipLibCheck": true, 13 "skipLibCheck": true,
14 "checkJs": true, 14 "checkJs": true,
15 "lib": ["esnext"] 15 "lib": ["es2021"]
16 } 16 }
17} 17}