Skip to content

Instantly share code, notes, and snippets.

@mribbons
Created June 22, 2022 04:59
Show Gist options
  • Save mribbons/3ad4731ba2b1ce81b5e05e0555c9c4c8 to your computer and use it in GitHub Desktop.
Save mribbons/3ad4731ba2b1ce81b5e05e0555c9c4c8 to your computer and use it in GitHub Desktop.
shared yarn workspace package with tst-reflect issues
{
"include": ["src"],
"references": [],
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"composite": true,
"incremental": true,
"rootDir": "./src",
"outDir": "./dist",
"plugins": [{ "transform": "tst-reflect-transformer" }],
"target": "es2017",
"module": "commonjs",
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
"declarationMap": true,
"sourceMap": true,
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
"strict": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment