mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-24 04:21:10 +00:00
tsconfig.json: Sequelize classes need ES6, debugging needs source maps
Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
parent
77e84a18ee
commit
91352d0d3c
1 changed files with 3 additions and 2 deletions
|
@ -3,11 +3,12 @@
|
||||||
"outDir": "./built",
|
"outDir": "./built",
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"target": "es5",
|
"target": "es6",
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"emitDecoratorMetadata": true
|
"emitDecoratorMetadata": true,
|
||||||
|
"sourceMap": true
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"./lib/**/*"
|
"./lib/**/*"
|
||||||
|
|
Loading…
Reference in a new issue