mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
17 lines
549 B
JSON
17 lines
549 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
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"ElectronClient/dist/**/*",
|
|
"CliClient/tests/support/**/*",
|
|
"CliClient/tests-build/support/**/*",
|
|
],
|
|
} |