mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
41 lines
No EOL
1.1 KiB
JSON
41 lines
No EOL
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
// Disable strict checks
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": false,
|
|
"strictBindCallApply": false,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitThis": false,
|
|
"useUnknownInCatchVariables": false,
|
|
// Additional relaxed settings
|
|
"skipLibCheck": true,
|
|
"noEmitOnError": false, // Generate types even if there are errors
|
|
"allowJs": true, // Allow JavaScript files to be compiled
|
|
"checkJs": false, // Don't type-check JavaScript files
|
|
"allowUnreachableCode": true,
|
|
"allowUnusedLabels": true,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
} |