aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2022-02-09 22:02:55 -0600
committerMatt Strapp <matt@mattstrapp.net>2022-02-09 22:02:55 -0600
commit59f6e710cd261879cb27a9f62ea76c7421fb7404 (patch)
tree3e2e36b67895b407e135be22eff8c2c95480aaa1 /tsconfig.json
parentconfigure CRSF properly (diff)
downloadee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.gz
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.bz2
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.lz
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.xz
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.tar.zst
ee4511w-web-59f6e710cd261879cb27a9f62ea76c7421fb7404.zip
add debugging
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json10
1 files changed, 5 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 78a0979..9c05f4c 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -21,9 +21,9 @@
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
/* Modules */
- "module": "commonjs", /* Specify what module code is generated. */
+ "module": "es6", /* Specify what module code is generated. */
// "rootDir": "./", /* Specify the root folder within your source files. */
- // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
+ "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
@@ -37,10 +37,10 @@
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
/* Emit */
- // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
- // "declarationMap": true, /* Create sourcemaps for d.ts files. */
+ "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
+ "declarationMap": true, /* Create sourcemaps for d.ts files. */
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
- // "sourceMap": true, /* Create source map files for emitted JavaScript files. */
+ "sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */
"outDir": "./dist", /* Specify an output folder for all emitted files. */
"removeComments": true, /* Disable emitting comments. */