diff options
Diffstat (limited to 'packages/memory-graph/tsconfig.json')
| -rw-r--r-- | packages/memory-graph/tsconfig.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/memory-graph/tsconfig.json b/packages/memory-graph/tsconfig.json new file mode 100644 index 00000000..c8878527 --- /dev/null +++ b/packages/memory-graph/tsconfig.json @@ -0,0 +1,26 @@ +{ + "extends": "@total-typescript/tsconfig/bundler/dom/library", + "compilerOptions": { + "jsx": "react-jsx", + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + }, + "outDir": "./dist", + "declaration": true, + "declarationMap": true, + "emitDeclarationOnly": false, + "skipLibCheck": true, + "strict": true, + "esModuleInterop": true, + "moduleResolution": "bundler", + "resolveJsonModule": true, + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "noUnusedLocals": false, + "noUnusedParameters": false, + "noEmit": false + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "**/*.test.*", "**/*.spec.*"] +} |