Refactored everythings

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-01-09 09:13:33 +01:00
parent d0f8f945f3
commit 9c65463684
23 changed files with 156 additions and 869 deletions

View File

@@ -1,11 +1,14 @@
{
"include": ["cli.ts", "modules/*"],
"include": ["src/cli.ts", "src/modules/*"],
"exclude": [
".vscode/",
"node_modules/",
"backups/"
"build/"
],
"compilerOptions": {
"resolveJsonModule": true,
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
@@ -14,12 +17,13 @@
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"declarationDir": "./dist/types",
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./dotfiles.js", /* Concatenate and emit output to single file. */
"outDir": "./build/", /* Redirect output structure to the directory. */
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"outDir": "./dist/cjs", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "removeComments": true, /* Do not emit comments to output. */