mirror of
https://git.proxmox.com/git/package-rebuilds
synced 2025-08-21 20:49:16 +00:00
31 lines
700 B
JSON
31 lines
700 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "commonjs",
|
|
"target": "es2015",
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"importHelpers": true,
|
|
"baseUrl": ".",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"test",
|
|
"dist"
|
|
]
|
|
}
|