diff --git a/.gitignore b/.gitignore index e33a66e..ce7963e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ docs/.vitepress/dist/ docs/.vitepress/cache/ coverage/ html/ +tsconfig.tsbuildinfo diff --git a/package-lock.json b/package-lock.json index fd2c3f3..e0fa324 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "typedoc-plugin-markdown": "^4.7.1", "typedoc-plugin-mdn-links": "^5.0.1", "typedoc-vitepress-theme": "^1.1.2", - "typescript": "^5.6.3", + "typescript": "^6.0.2", "vitepress": "^1.6.3", "vitepress-plugin-auto-sidebar": "^1.3.5", "vitest": "^4.1.2" @@ -3779,9 +3779,9 @@ } }, "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", "dev": true, "license": "Apache-2.0", "bin": { diff --git a/package.json b/package.json index aa62b84..914bff3 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "typedoc-plugin-markdown": "^4.7.1", "typedoc-plugin-mdn-links": "^5.0.1", "typedoc-vitepress-theme": "^1.1.2", - "typescript": "^5.6.3", + "typescript": "^6.0.2", "vitepress": "^1.6.3", "vitepress-plugin-auto-sidebar": "^1.3.5", "vitest": "^4.1.2" diff --git a/tsconfig.json b/tsconfig.json index 75ad500..31d848e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,6 +11,7 @@ "moduleResolution": "Node16", "isolatedModules": true, "inlineSourceMap": true, + "rootDir": "./src", "outDir": "./dist", "declaration": true, "removeComments": false,