Compare commits

..

No commits in common. "99df26217e9473f1388f495274effe1d1b7eb709" and "26f2484e3545875134dbe22d7d0316554dde36cf" have entirely different histories.

31 changed files with 1 additions and 76 deletions

3
.gitignore vendored
View File

@ -1,3 +0,0 @@
node_modules
pnpm-lock.yaml
yarn.lock

View File

@ -1,12 +0,0 @@
{
"extends": "@parcel/config-default",
"transformers": {
"*.{ts,tsx}": ["@parcel/transformer-typescript-tsc"]
},
"compressors": {
"*.{html,css,js,svg,map}": [
"@parcel/compressor-gzip",
"@parcel/compressor-brotli"
]
}
}

View File

@ -1,3 +0,0 @@
{
}

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2024 NOBODY
Copyright (c) 2024 WorkSimplon
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles/index.module.scss">
</head>
<body>
<main>
<header></header>
<section></section>
<footer></footer>
</main>
<script type="module" src="scripts/main.ts"></script>
</body>
</html>

View File

@ -1 +0,0 @@
> Contient les classes...

View File

@ -1 +0,0 @@
> Contient les évenements du DOM

View File

View File

@ -1 +0,0 @@
> Contient les services. ex: RegisterService, DisconnectService

View File

@ -1 +0,0 @@
> Contient les templates DOM

View File

@ -1 +0,0 @@
> Contient les interfaces, énumérations et autres...

View File

@ -1 +0,0 @@
> Contient des diférents éléments 'utilitaires'

View File

@ -1,5 +0,0 @@
```javascript
import * as classes from './style.module.scss';
document.body.className = classes.body;
```

View File

@ -1,29 +0,0 @@
{
"compilerOptions": {
"lib": [
"esnext",
"dom"
],
"baseUrl": "/",
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "ESNext",
"isolatedModules": true,
"incremental": true,
"plugins": [],
"paths": {
"@/*": ["./src/*"],
"@class/*": ["./src/class/*"],
"@events/*": ["./src/events/*"],
"@services": ["./src/services"],
"@templates": ["./src/templates"],
"@types": ["./src/types"],
"@utils/*": ["./src/utils/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}