hedgedoc/tsconfig.json
David Mehren 2a7c41a7fe
Always use strict mode
Signed-off-by: David Mehren <dmehren1@gmail.com>
2020-04-25 16:04:05 +02:00

18 lines
362 B
JSON

{
"compilerOptions": {
"outDir": "./built",
"allowJs": true,
"strictNullChecks": true,
"target": "es6",
"module": "commonjs",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"lib": ["ES2019"],
"alwaysStrict": true
},
"include": [
"./lib/**/*"
]
}