Skip to content

Commit

Permalink
chore(dev): change moduleResolution to Bundler
Browse files Browse the repository at this point in the history
Signed-off-by: Fery Wardiyanto <[email protected]>
  • Loading branch information
feryardiant committed Apr 8, 2024
1 parent f16832d commit 4f64642
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
{
"include": [
"*.config.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.vue"
],
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"module": "esnext",
"target": "esnext",
"module": "ESNext",
"target": "ESNext",
"jsx": "preserve",
"strict": true,
"sourceMap": true,
"moduleResolution": "node",
"moduleResolution": "Bundler",
"skipLibCheck": true,
"declaration": true,
"resolveJsonModule": true,
Expand All @@ -32,5 +26,19 @@
"~/*": ["src/*"]
}
},
"exclude": [
".github",
"build",
"node_modules",
"vendor",
"**/*.js",
"**/*.cjs"
],
"include": [
"*.config.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.vue"
],
"vueCompilerOptions": {}
}

0 comments on commit 4f64642

Please sign in to comment.