Skip to content

Commit

Permalink
build: update TypeScript configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Alystrasz committed Jan 5, 2025
1 parent b86c7b2 commit 5b29ade
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src-vue/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"compilerOptions": {
"target": "ES2020",
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "bundler",
"moduleResolution": "Node",
"strict": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"noEmit": true,
"jsx": "preserve",
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"lib": ["ESNext", "DOM", "ES2018"],
"skipLibCheck": true
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
Expand Down

0 comments on commit 5b29ade

Please sign in to comment.