clienttarget / tsconfig.json
iDevBuddy
fix: Resolve strict TypeScript database typings and allow production build warnings bypass
5307e67
raw
history blame contribute delete
631 Bytes
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022", "DOM"],
"outDir": "./dist",
"rootDir": "./src",
"strict": false,
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"paths": {
"@shared/*": ["./src/shared/*"],
"@discovery/*": ["./src/discovery/*"],
"@profiling/*": ["./src/profiling/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}