Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fc0ec44
add es 3 svelte
Trovato-Nickolas Oct 29, 2025
b181289
add es 3
Trovato-Nickolas Nov 12, 2025
7fa2572
Delete trovato_nickolas/TPSI/DataBase/trovato_esercitazione_3 directory
Trovato-Nickolas Nov 12, 2025
c77cb79
add es 3
Trovato-Nickolas Nov 12, 2025
d200a43
add es 4
Trovato-Nickolas Nov 12, 2025
64a9b23
Merge branch 'ittagnelli:main' into TPSI
Trovato-Nickolas Feb 19, 2026
c331040
add es
Trovato-Nickolas Mar 18, 2026
0de791b
Delete trovato_nickolas/TPSI/ToDoList directory
Trovato-Nickolas Mar 18, 2026
4b955d3
add es
Trovato-Nickolas Mar 18, 2026
48dd4d7
Delete trovato_nickolas/TPSI/ToDoList_API_1 directory
Trovato-Nickolas Mar 18, 2026
1738ae5
ed add
Trovato-Nickolas Mar 18, 2026
f38267a
ad ed
Trovato-Nickolas Mar 18, 2026
7cc2de1
add es
Trovato-Nickolas Mar 25, 2026
f228ad0
Delete trovato_nickolas/TPSI/ToDoList_API_10 directory
Trovato-Nickolas Mar 25, 2026
25f2833
add es
Trovato-Nickolas Mar 25, 2026
902b817
add es
Trovato-Nickolas Mar 25, 2026
1ff8451
Delete trovato_nickolas/TPSI/ToDoList_API_11 directory
Trovato-Nickolas Mar 25, 2026
3541729
add es
Trovato-Nickolas Mar 25, 2026
0c9848a
add es
Trovato-Nickolas Mar 25, 2026
facac3d
add es
Trovato-Nickolas Mar 25, 2026
acc2fd9
add es
Trovato-Nickolas Mar 25, 2026
86e7db6
add es
Trovato-Nickolas Mar 25, 2026
d1906bf
add es
Trovato-Nickolas Mar 25, 2026
a577f2c
qsdd
Trovato-Nickolas Apr 8, 2026
95a14b9
asdd
Trovato-Nickolas Apr 8, 2026
bef983c
Delete trovato_nickolas/TPSI/todoS-server directory
Trovato-Nickolas Apr 8, 2026
2449a1f
Delete trovato_nickolas/TPSI/todoS-web directory
Trovato-Nickolas Apr 8, 2026
3966974
asd
Trovato-Nickolas Apr 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions trovato_nickolas/TPSI/SvelteForm_3/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# sv

Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).

## Creating a project

If you're seeing this, you've probably already done this step. Congrats!

```sh
# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app
```

## Developing

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```sh
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```sh
npm run build
```

You can preview the production build with `npm run preview`.

> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
13 changes: 13 additions & 0 deletions trovato_nickolas/TPSI/SvelteForm_3/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"moduleResolution": "bundler"
}
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}
Loading