@fdm-monster/server
Version:
FDM Monster is a bulk OctoPrint, Klipper, PrusaLink and BambuLab manager to set up, configure and monitor 3D printers. Our aim is to provide neat overview over your farm.
34 lines (33 loc) • 944 B
JSON
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"verbatimModuleSyntax": false,
"allowImportingTsExtensions": true,
"allowJs": true,
"removeComments": true,
"resolveJsonModule": true,
"types": ["vitest/globals", "node"],
"typeRoots": ["./node_modules/@types", "./src/types", "./node_modules"],
"sourceMap": true,
"outDir": "dist",
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"lib": ["esnext"],
"baseUrl": "./src",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"noImplicitAny": true,
"paths": {
"@/*": ["./*"]
}
},
"include": ["src/**/*", "test/**/*", "vite.config.ts"],
"exclude": ["node_modules"]
}