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

11 lines
405 B
JSON
Raw Normal View History

2020-06-25 00:13:32 +02:00
{
"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
}
}