@jsarc/timez 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@jsarc/timez",
3
+ "publishConfig": {
4
+ "access": "public"
5
+ },
6
+ "version": "0.0.0",
7
+ "description": "Timez est une bibliothèque JavaScript/TypeScript puissante et intuitive pour la manipulation des dates et fuseaux horaires. Inspirée par les meilleures pratiques de Python et Moment.js, elle offre une API fluide et type-safe pour tous vos besoins de gestion temporelle.",
8
+ "main": "index.ts",
9
+ "keywords": [],
10
+ "author": "INICODE <contact.inicode@gmail.com>",
11
+ "license": "MIT",
12
+ "scripts": {
13
+ "init": "npm init --scope=@jsarc/timez",
14
+ "login": "npm login"
15
+ },
16
+ "devDependencies": {},
17
+ "dependencies": {}
18
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES6",
4
+ "module": "commonjs",
5
+ "lib": ["ES2020", "DOM", "DOM.Iterable", "ESNext"],
6
+ "esModuleInterop": true,
7
+ "skipLibCheck": true,
8
+ "declaration": false,
9
+ "sourceMap": false,
10
+ "allowSyntheticDefaultImports": true,
11
+ "noEmit": false,
12
+
13
+ "strict": false,
14
+ "noImplicitAny": false,
15
+ "strictNullChecks": false,
16
+ "strictFunctionTypes": false,
17
+ "strictBindCallApply": false,
18
+ "strictPropertyInitialization": false,
19
+ "noImplicitThis": false,
20
+ "alwaysStrict": false
21
+ },
22
+ "include": [],
23
+ "exclude": [
24
+ "node_modules",
25
+ "**/*.d.ts"
26
+ ]
27
+ }