diff --git a/src/lib/litegraph/tsconfig.json b/src/lib/litegraph/tsconfig.json deleted file mode 100644 index ef4ccc887..000000000 --- a/src/lib/litegraph/tsconfig.json +++ /dev/null @@ -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/**/*"] -}