diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2019-12-09 12:32:28 -0500 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2019-12-09 12:32:28 -0500 |
| commit | d61e599a02bdd9e1c2ba8730d03ebcd33ceed467 (patch) | |
| tree | 91d4b8727fd0ce0798fd4d975f9277f14a6d6218 | |
| parent | 97fc58671f076b1871c1f96a14c583767ce9ca13 (diff) | |
| download | ao-coverage-d61e599a02bdd9e1c2ba8730d03ebcd33ceed467.tar.gz ao-coverage-d61e599a02bdd9e1c2ba8730d03ebcd33ceed467.tar.bz2 ao-coverage-d61e599a02bdd9e1c2ba8730d03ebcd33ceed467.zip | |
Enable source maps and incremental builds
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | tsconfig.json | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ node_modules dist build +.vscode +tsconfig.tsbuildinfo .env* !.env.sample diff --git a/tsconfig.json b/tsconfig.json index 2d4594b..447f2f3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { /* Basic Options */ - // "incremental": true, /* Enable incremental compilation */ + "incremental": true, /* Enable incremental compilation */ "target": "es2018", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ // "lib": [], /* Specify library files to be included in the compilation. */ @@ -10,7 +10,7 @@ // "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. */ + "sourceMap": true, /* Generates corresponding '.map' file. */ // "outFile": "./", /* Concatenate and emit output to single file. */ "outDir": "./build/", /* Redirect output structure to the directory. */ "rootDir": "./src/", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ |
