diff options
author | Ajay <[email protected]> | 2022-06-22 13:21:15 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2022-06-22 13:21:15 -0400 |
commit | 6b4da2584784645f0b723db8451e340a02cdf247 (patch) | |
tree | c8710e3dd60f0ab0c249e328b3947c2ec45d17bd /tsconfig.json | |
parent | 529db4d6ca67cecf9a76f52065ceba7fb8c5c94f (diff) | |
download | SponsorBlock-6b4da2584784645f0b723db8451e340a02cdf247.tar.gz SponsorBlock-6b4da2584784645f0b723db8451e340a02cdf247.zip |
Create source maps in dev
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index 55769505..a2c61955 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,14 +3,14 @@ "module": "commonjs", "target": "es6", "noImplicitAny": false, - "sourceMap": false, + "sourceMap": true, "outDir": "dist/js", "noEmitOnError": false, "typeRoots": [ "node_modules/@types" ], "resolveJsonModule": true, "jsx": "react", "lib": [ - "es2019", + "es2019", "dom", "dom.iterable" ] |