Skip to content
Snippets Groups Projects
Commit b3933dfa authored by Michele Alberti's avatar Michele Alberti
Browse files

[config] Allow build emission as intermediate step in order to produce the doc.

parent 1f86dd4f
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ yarn.lock
yarn-error.log
/bin
/dist
/build
/doc/html
/src/dome
......
......@@ -8,7 +8,8 @@
"scripts": {
"lint": "eslint --ext .ts,.tsx --format=stylish ./src",
"typecheck": "tsc --noEmit",
"typecheck:watch": "yarn run typecheck -- --watch"
"typecheck:watch": "yarn run typecheck -- --watch",
"build": "tsc"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
......
......@@ -12,12 +12,12 @@
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "lib", /* Redirect output structure to the directory. */
"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. */
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "removeComments": true, /* Do not emit comments to output. */
"noEmit": true, /* Do not emit outputs. */
"noEmit": false, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
"isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment