hedgedoc/tsconfig.json

17 lines
313 B
JSON
Raw Normal View History

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