Skip to content

Commit

Permalink
chore: Upgrade target version
Browse files Browse the repository at this point in the history
  • Loading branch information
przpl committed Feb 26, 2024
1 parent 5896f3f commit 9d1460f
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"target": "es2022",
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"outDir": "./dist",
"declaration": true,
"sourceMap": false
"outDir": "./dist"
},
"include": ["src"],
"exclude": ["node_modules"]
"exclude": ["node_modules", "**/*.spec.ts"]
}

0 comments on commit 9d1460f

Please sign in to comment.