perf: ⬇️ downgrade to es6
All checks were successful
repod / xml (push) Successful in 23s
repod / php (push) Successful in 41s
repod / nodejs (push) Successful in 1m25s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-10-25 08:44:44 +02:00
parent 0edf8d2634
commit 676b1e0ea2

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,
}