CLI to install project (#164)

* CLI to install project

* CLI fixes

* Update README.md

* Cleanup gitignore
This commit is contained in:
Félix Malfait
2023-06-01 09:19:49 +02:00
committed by GitHub
parent 7d87598953
commit e8f1146ae1
22 changed files with 6639 additions and 0 deletions

14
cli/tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "es5",
"module": "es2020",
"strict": true,
"outDir": "lib/",
"moduleResolution": "nodenext",
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*.ts"]
}