perf: ⬇️ downgrade to es6

This commit is contained in:
Michel Roux 2024-10-25 08:44:44 +02:00
parent 0edf8d2634
commit 676b1e0ea2
1 changed files with 5 additions and 4 deletions

View File

@ -1,14 +1,15 @@
{
"extends": "@vue/tsconfig/tsconfig.json",
"extends": "@vue/tsconfig",
"include": ["./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "es6",
"module": "es6",
"declaration": true,
"strict": true,
"noImplicitAny": false,
"rootDir": ".",
"strict": true,
"noEmit": true,
"allowImportingTsExtensions": true,
}