mirror of
https://github.com/dzeiocom/libs.git
synced 2025-05-16 14:29:54 +00:00
* Added modules for object-utils + moved from parcel to esbuild Signed-off-by: Avior <github@avior.me> * Moved url-manager Signed-off-by: Avior <github@avior.me> * Fixed codacy error Signed-off-by: Avior <github@avior.me>
37 lines
916 B
JSON
37 lines
916 B
JSON
{
|
|
"compilerOptions": {
|
|
// Compilation
|
|
"target": "ES2019", // Follow NodeJS oldest supported LTS and use version from https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"pretty": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
// Type Checking
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|