Compare commits
No commits in common. "99df26217e9473f1388f495274effe1d1b7eb709" and "26f2484e3545875134dbe22d7d0316554dde36cf" have entirely different histories.
99df26217e
...
26f2484e35
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +0,0 @@
|
|||||||
node_modules
|
|
||||||
pnpm-lock.yaml
|
|
||||||
yarn.lock
|
|
12
.parcelrc
12
.parcelrc
@ -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"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
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:
|
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:
|
||||||
|
|
||||||
|
@ -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>
|
|
@ -1 +0,0 @@
|
|||||||
> Contient les classes...
|
|
@ -1 +0,0 @@
|
|||||||
> Contient les évenements du DOM
|
|
@ -1 +0,0 @@
|
|||||||
> Contient les services. ex: RegisterService, DisconnectService
|
|
@ -1 +0,0 @@
|
|||||||
> Contient les templates DOM
|
|
@ -1 +0,0 @@
|
|||||||
> Contient les interfaces, énumérations et autres...
|
|
@ -1 +0,0 @@
|
|||||||
> Contient des diférents éléments 'utilitaires'
|
|
@ -1,5 +0,0 @@
|
|||||||
```javascript
|
|
||||||
import * as classes from './style.module.scss';
|
|
||||||
|
|
||||||
document.body.className = classes.body;
|
|
||||||
```
|
|
@ -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"]
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user