Compare commits
15 Commits
26f2484e35
...
99df26217e
Author | SHA1 | Date | |
---|---|---|---|
99df26217e | |||
0d90bed752 | |||
80a1f981d8 | |||
b239b2a5e1 | |||
efa5314879 | |||
873d80e6e3 | |||
1b394bd9fa | |||
4a4343be18 | |||
7b1f9f10a9 | |||
f5f8c5f107 | |||
4999f65e34 | |||
62223abbfe | |||
97caa49f4f | |||
022565e74c | |||
c86dc618b7 |
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
node_modules
|
||||||
|
pnpm-lock.yaml
|
||||||
|
yarn.lock
|
12
.parcelrc
Normal file
12
.parcelrc
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"extends": "@parcel/config-default",
|
||||||
|
"transformers": {
|
||||||
|
"*.{ts,tsx}": ["@parcel/transformer-typescript-tsc"]
|
||||||
|
},
|
||||||
|
"compressors": {
|
||||||
|
"*.{html,css,js,svg,map}": [
|
||||||
|
"@parcel/compressor-gzip",
|
||||||
|
"@parcel/compressor-brotli"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2024 WorkSimplon
|
Copyright (c) 2024 NOBODY
|
||||||
|
|
||||||
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:
|
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:
|
||||||
|
|
||||||
|
17
src/index.html
Normal file
17
src/index.html
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<!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>
|
0
src/scripts/class/index.ts
Normal file
0
src/scripts/class/index.ts
Normal file
1
src/scripts/class/readme.md
Normal file
1
src/scripts/class/readme.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
> Contient les classes...
|
0
src/scripts/events/index.ts
Normal file
0
src/scripts/events/index.ts
Normal file
1
src/scripts/events/readme.md
Normal file
1
src/scripts/events/readme.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
> Contient les évenements du DOM
|
0
src/scripts/main.ts
Normal file
0
src/scripts/main.ts
Normal file
0
src/scripts/services/account/disconnect.service.ts
Normal file
0
src/scripts/services/account/disconnect.service.ts
Normal file
0
src/scripts/services/account/index.module.ts
Normal file
0
src/scripts/services/account/index.module.ts
Normal file
0
src/scripts/services/account/login.service.ts
Normal file
0
src/scripts/services/account/login.service.ts
Normal file
0
src/scripts/services/account/register.service.ts
Normal file
0
src/scripts/services/account/register.service.ts
Normal file
0
src/scripts/services/index.ts
Normal file
0
src/scripts/services/index.ts
Normal file
1
src/scripts/services/readme.md
Normal file
1
src/scripts/services/readme.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
> Contient les services. ex: RegisterService, DisconnectService
|
0
src/scripts/services/storage/cookie/readme.md
Normal file
0
src/scripts/services/storage/cookie/readme.md
Normal file
0
src/scripts/templates/index.ts
Normal file
0
src/scripts/templates/index.ts
Normal file
1
src/scripts/templates/readme.md
Normal file
1
src/scripts/templates/readme.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
> Contient les templates DOM
|
0
src/scripts/types/index.ts
Normal file
0
src/scripts/types/index.ts
Normal file
1
src/scripts/types/readme.md
Normal file
1
src/scripts/types/readme.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
> Contient les interfaces, énumérations et autres...
|
0
src/scripts/utils/index.ts
Normal file
0
src/scripts/utils/index.ts
Normal file
1
src/scripts/utils/readme.md
Normal file
1
src/scripts/utils/readme.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
> Contient des diférents éléments 'utilitaires'
|
0
src/scripts/utils/validators/index.ts
Normal file
0
src/scripts/utils/validators/index.ts
Normal file
0
src/styles/index.module.scss
Normal file
0
src/styles/index.module.scss
Normal file
5
src/styles/readme.md
Normal file
5
src/styles/readme.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
```javascript
|
||||||
|
import * as classes from './style.module.scss';
|
||||||
|
|
||||||
|
document.body.className = classes.body;
|
||||||
|
```
|
29
tsconfig.json
Normal file
29
tsconfig.json
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"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"]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user