- {{ error }}
-
+ {{ compiledCodeForDebug }}
+ {{ error }}
+
diff --git a/tsconfig.config.json b/tsconfig.config.json
index a98bbf0..c553cd3 100644
--- a/tsconfig.config.json
+++ b/tsconfig.config.json
@@ -1,5 +1,5 @@
{
- "extends": "@vue/tsconfig/tsconfig.node.json",
+ "extends": "@vue/tsconfig/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
diff --git a/tsconfig.cy.json b/tsconfig.cy.json
index ad10b75..d84da7b 100644
--- a/tsconfig.cy.json
+++ b/tsconfig.cy.json
@@ -1,5 +1,5 @@
{
- "extends": "@vue/tsconfig/tsconfig.web.json",
+ "extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["cypress/**/*.ts"],
"compilerOptions": {
"ignoreDeprecations": "5.0",
diff --git a/tsconfig.lib.json b/tsconfig.lib.json
index 90bc0b7..06d6088 100644
--- a/tsconfig.lib.json
+++ b/tsconfig.lib.json
@@ -1,5 +1,5 @@
{
- "extends": "@vue/tsconfig/tsconfig.web.json",
+ "extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["src/**/*", "src/**/*.vue"],
"compilerOptions": {
"rootDir": "src",
diff --git a/vite.config.lib.ts b/vite.config.lib.ts
index 290ad0c..403a3c3 100644
--- a/vite.config.lib.ts
+++ b/vite.config.lib.ts
@@ -42,6 +42,7 @@ export default Object.assign(
acorn: "Acorn",
"hash-sum": "Hash",
"vue-inbrowser-compiler-sucrase": "VueInBrowserCompilerSucrase",
+ "vue-inbrowser-prismjs-highlighter": "VueInBrowserPrismjsHighlighter",
"@vue/compiler-core": "VueCompilerCore",
"@vue/compiler-dom": "VueCompilerDom",
"acorn-walk": "AcornWalk",
diff --git a/vite.config.ts b/vite.config.ts
index d2c9f8f..0a8bd80 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,8 +1,5 @@
-import { resolve } from "path";
-
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
-import pkg from "./package.json";
// https://vitejs.dev/config/
export default defineConfig({