hedgedoc/tsconfig.json
Philip Molares fab2607e4d
Move lib and test into src directory
Signed-off-by: Philip Molares <philip.molares@udo.edu>
2020-05-22 14:19:05 +02:00

16 lines
356 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", "test"]
}