hedgedoc/tsconfig.json

17 lines
348 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,
"lib": ["ES2019"],
"alwaysStrict": true
},
"include": ["src"]
}