Skip to content

Commit

Permalink
feat: tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
lzear committed Nov 5, 2023
1 parent 19d14fe commit 137bd0c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
{
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"skipLibCheck": true,
"module": "esnext",
"target": "esnext",

"moduleResolution": "nodenext",
"module": "nodenext",
"types": ["node"],
"lib": ["esnext", "ES2021", "dom", "dom.iterable"],
"allowJs": true,
"strict": true,
"noEmit": true
"noEmit": true,
"resolveJsonModule": true,


// "noUnusedLocals": true,
"jsx": "preserve",
},
"include": [
"**/*.ts",
"**/*.vue",
"**/*.json",
".vitepress/**/*.ts",
".vitepress/config.mts"
],
Expand Down

0 comments on commit 137bd0c

Please sign in to comment.