config(ts): Add base tsconfig for the libs

This commit is contained in:
Emil Ivanichkov 2024-01-22 15:15:01 +02:00
parent ed3c3661c9
commit 69acf41574

25
tsconfig.base.json Normal file
View File

@ -0,0 +1,25 @@
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"importHelpers": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"target": "ES2022",
"lib": ["es2020", "ES2022.Error"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": "."
},
"exclude": ["node_modules", "tmp"]
}