From 65c11c78344e1261fd77b3f93ec7effcbb4faa61 Mon Sep 17 00:00:00 2001 From: Robbie Coomber Date: Tue, 26 Nov 2024 10:32:27 +0000 Subject: [PATCH] Revert move to /lib rather than /lib/src --- rollup.config.js | 2 +- tsconfig.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index b791c88eb4..f947d51c84 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -106,7 +106,7 @@ const entrypointTargets = entrypoints.map((file) => { const typeTargets = entrypoints .filter((file) => file.endsWith('.es.ts')) .map((file) => { - const source = `./lib/entrypoints/${file.replace('.ts', '.d.ts')}` + const source = `./lib/src/entrypoints/${file.replace('.ts', '.d.ts')}` /** @type {import('rollup').RollupOptions} */ return { input: source, diff --git a/tsconfig.json b/tsconfig.json index ccc976cd83..07e5b9c4cd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,5 @@ { "compilerOptions": { - "rootDir": "./src", "outDir": "./lib", "target": "ES5", "lib": ["dom", "dom.iterable", "esnext"],