diff --git a/src/lib/litegraph/.gitignore b/src/lib/litegraph/.gitignore deleted file mode 100755 index 5721fd873..000000000 --- a/src/lib/litegraph/.gitignore +++ /dev/null @@ -1,33 +0,0 @@ -temp/ -temp/* -coverage/ - -# Editors -*.bak -.project - -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -*.code-workspace -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/src/lib/litegraph/tsconfig.json.bak b/src/lib/litegraph/tsconfig.json.bak new file mode 100644 index 000000000..89961e1b0 --- /dev/null +++ b/src/lib/litegraph/tsconfig.json.bak @@ -0,0 +1,38 @@ +{ + "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/**/*"] +} +D \ No newline at end of file