This commit is contained in:
2022-09-22 18:00:56 +02:00
parent eafc0307aa
commit a4e57d369c
19 changed files with 1493 additions and 1367 deletions

1
core/README.md Normal file
View File

@ -0,0 +1 @@
# CORE

36
core/package-lock.json generated Normal file
View File

@ -0,0 +1,36 @@
{
"name": "core",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "core",
"version": "1.0.0",
"devDependencies": {
"typescript": "^4.8.3"
}
},
"node_modules/typescript": {
"version": "4.8.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz",
"integrity": "sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==",
"dev": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=4.2.0"
}
}
},
"dependencies": {
"typescript": {
"version": "4.8.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz",
"integrity": "sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==",
"dev": true
}
}
}

13
core/package.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "core",
"version": "1.0.0",
"description": "description de ouf",
"author": "Yanis Rigaudeau - Axel Barault",
"private": true,
"scripts": {
"build": "tsc"
},
"devDependencies": {
"typescript": "^4.8.3"
}
}

1
core/src/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './test';

3
core/src/test.ts Normal file
View File

@ -0,0 +1,3 @@
export type test = {
a: string;
}

17
core/tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"composite": true,
"sourceMap": true,
"outDir": "dist"
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/*",
"dist/*"
],
"references": []
}