diff options
| author | Johannes Theiner <[email protected]> | 2024-07-31 22:59:59 +0200 |
|---|---|---|
| committer | Johannes Theiner <[email protected]> | 2024-07-31 22:59:59 +0200 |
| commit | 15e343739e28eaed668445d7af274bd22c1a7a9f (patch) | |
| tree | 0cbd40d5ef860b1cfdfdf12e865386a441473b81 /esbuild.config.mjs | |
| parent | b9a0e401e0c8d198870f9e4865f66e23391dfa72 (diff) | |
| download | ai-pulse-obsidian-plugin-15e343739e28eaed668445d7af274bd22c1a7a9f.tar.gz ai-pulse-obsidian-plugin-15e343739e28eaed668445d7af274bd22c1a7a9f.zip | |
Add stylelint and configure eslint to add custom plugin.
- Split up main.ts into multiple files.
Diffstat (limited to 'esbuild.config.mjs')
| -rw-r--r-- | esbuild.config.mjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/esbuild.config.mjs b/esbuild.config.mjs index b13282b..859fa6e 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -15,7 +15,7 @@ const context = await esbuild.context({ banner: { js: banner, }, - entryPoints: ["main.ts"], + entryPoints: ["src/main.ts"], bundle: true, external: [ "obsidian", @@ -45,4 +45,4 @@ if (prod) { process.exit(0); } else { await context.watch(); -}
\ No newline at end of file +} |
