Remove litegraph's tsconfig

This commit is contained in:
Benjamin Lu
2025-08-03 21:12:28 -04:00
parent 6a1b184a63
commit 3f7e6fa53b

View File

@@ -1,37 +0,0 @@
{
"compilerOptions": {
"noEmit": true,
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"sourceMap": true,
"esModuleInterop": true,
"moduleResolution": "Node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"verbatimModuleSyntax": true,
/* AllowJs during migration phase */
"allowJs": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"typeRoots": [],
"outDir": "./dist",
"rootDir": "./"
},
"include": ["src/**/*"]
}