monorepo/packages/core/tsconfig/base.json

30 lines
915 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Base",
"compilerOptions": {
"incremental": true,
"target": "esnext",
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictBindCallApply": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"importsNotUsedAsValues": "remove",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"moduleResolution": "Node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"pretty": true,
"isolatedModules": true,
"skipLibCheck": true,
}
}