mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-04-25 07:22:07 +00:00
29 lines
705 B
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/**/*"
|
|
],
|
|
}
|