1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/tsconfig.dev.json
2020-06-24 23:13:32 +01:00

11 lines
405 B
JSON

{
"extends": "./tsconfig",
"compilerOptions": {
// There's currently a bug in Electron that makes it fail to load the source maps
// (it tries to load them from the root of the app even though they are in
// sub-folders). So to have source maps anyway in dev, we use inline source maps.
// https://github.com/electron/electron/issues/22996
"sourceMap": false,
"inlineSourceMap": true
}
}