You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`package.json`will be familiar if you've worked with Node.js before. It lists the project's dependencies — including `svelte`and`@sveltejs/kit`— and a variety of `scripts`for interacting with the SvelteKit CLI. (We're currently running `npm run dev`in the bottom window.)
7
+
Node.js を使用したことがあるなら、`package.json`はおなじみでしょう。プロジェクトの依存関係 (`svelte`と`@sveltejs/kit`を含む) と、SvelteKit CLI を操作するための様々な `scripts`がリストアップされています。(現在バックグラウンドで `npm run dev`が実行されています)
8
8
9
-
> Note that it also specifies `"type": "module"`, which means that `.js`files are treated as native JavaScript modules by default, rather than the legacy CommonJS format.
`svelte.config.js`contains your project configuration. We don't need to worry about this file for now, but if you're curious, [visit the documentation](https://kit.svelte.dev/docs/configuration).
`src`is where your app's source code goes. `src/app.html`is your page template (SvelteKit replaces the `%sveltekit.head%`and`%sveltekit.body%`as appropriate), and `src/routes`defines the [routes](/tutorial/pages)of your app.
0 commit comments