Files
Draupnir/tsconfig.json

29 lines
705 B
JSON

{
"compilerOptions": {
"alwaysStrict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"moduleResolution": "node",
"newLine": "LF",
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"target": "es2021",
"noImplicitAny": true,
"sourceMap": true,
"strictNullChecks": true,
"outDir": "./lib",
"types": [
"node",
"mocha"
],
"jsx": "react",
"jsxFactory": "DeadDocumentJSX.JSXFactory"
},
"include": [
"./src/**/*"
],
}