JavaScript transpiled (Babel/TypeScript output), build targets, source maps, and tree-shaking. Use when working with transpiled JS output, webpack/babel/esbuild builds, source maps, or build-tool output.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
JavaScript transpiled (Babel/TypeScript output), build targets, source maps, and tree-shaking. Use when working with transpiled JS output, webpack/babel/esbuild builds, source maps, or build-tool output.
Javascript Transpiled
Keep It Simple (KISS)
The transpiled output is generated code - do NOT edit it directly. Edit the source.
If you're writing JS that targets transpilation: write clean modern ES6+ and let the build tool handle it.
Avoid manual polyfills - let the transpiler/bundler inject them.
Always use the latest version of packages (install via packagename@latest)
Build Conventions
Output directory: dev/ or dist/ - never commit these to git.
Source maps enabled for debugging: --sourcemap or devtool: 'source-map'.
Minification for production, not development.
Tree-shaking: use ES module imports so unused code is eliminated.
Code Style
Prefer public and private variable definitions above the constructor
Same rules as JavaScript ES modules - KISS, no overengineering.