summaryrefslogtreecommitdiff
path: root/packages/frontend/test/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/test/tsconfig.json')
-rw-r--r--packages/frontend/test/tsconfig.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/test/tsconfig.json b/packages/frontend/test/tsconfig.json
index 1424fdbdfb..42372eae7d 100644
--- a/packages/frontend/test/tsconfig.json
+++ b/packages/frontend/test/tsconfig.json
@@ -9,9 +9,9 @@
"noFallthroughCasesInSwitch": true,
"declaration": false,
"sourceMap": true,
- "target": "es2021",
+ "target": "ES2022",
"module": "es2020",
- "moduleResolution": "node",
+ "moduleResolution": "node16",
"allowSyntheticDefaultImports": true,
"removeComments": false,
"noLib": false,
@@ -27,7 +27,7 @@
"@/*": ["../src/*"]
},
"typeRoots": [
- "../node_modules/@types",
+ "../node_modules/@types"
],
"lib": [
"esnext",
@@ -38,6 +38,6 @@
"compileOnSave": false,
"include": [
"./**/*.ts",
- "../src/**/*.vue",
+ "../src/**/*.vue"
]
}