Skip to content
Snippets Groups Projects

Support for common definition of pnpm config like also sharing helper scripts used while building NPM applications

Merged Bartek Wrona requested to merge bw_common_config into develop
1 file
+ 56
0
Compare changes
  • Side-by-side
  • Inline
+ 56
0
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"incremental": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"target": "ES2020",
"lib": [
"DOM",
"ES2020"
],
"module": "ES2020",
"moduleResolution": "bundler",
"rootDir": "./src",
"outDir": "./dist",
"noEmit": false,
"declaration": true,
"declarationMap": false,
"sourceMap": false,
"noImplicitAny": false,
"noLib": false,
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"allowUnusedLabels": false,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"checkJs": false,
"strict": true,
"alwaysStrict": true,
"allowJs": false,
"esModuleInterop": true,
"noErrorTruncation": true,
},
"buildOptions": {
"force": true,
"verbose": true
}
}
\ No newline at end of file
Loading