mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-04-26 19:05:15 +00:00
c1215ab045
We then run this as part of the build step, then run tsc with the original project file to get the side effect of emitting the source files. Since the `test/tsconfig.json` has `noEmit: true`.
29 lines
689 B
JSON
29 lines
689 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": "JSXFactory"
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
}
|