# SPDX-License-Identifier: MPL-2.0
# Copyright 2026 Shota FUJI
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

# What: Node.js 及び互換ツールが依存パッケージを格納するディレクトリ。
#  Why: サイズが非常に大きく、可読性も低いため。
node_modules

# What: 環境変数。
#  Why: シークレットや環境依存の値が含まれるため。
.env

# What: Nix の作成するビルド成果物 (へのシンボリックリンク)。
#       雑すぎる名前な上カレントディレクトリに吐かれ、変更するためには
#       都度 CLI オプションを指定する必要がある。
result

# What: Elm の公式ツール群が利用するキャッシュやらのディレクトリ。
elm-stuff

# What: Zig のビルドキャッシュディレクトリ。
.zig-cache

# What: Zig のビルド成果物。
zig-out

# What: ダウンロードされた Zig の外部パッケージ。
zig-pkg
