hedgedoc/tsconfig.json
Philip Molares 8246175b5a
Only include src directory in tsconfig.json
Signed-off-by: Philip Molares <philip.molares@udo.edu>
2020-05-22 14:19:12 +02:00

16 lines
348 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": ["src"]
}