Skip to content

Commit 8ba5566

Browse files
authored
Ignore langgraph warning for now (#2)
1 parent 573f456 commit 8ba5566

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ coverage
55
tests
66
**/__tests__
77
ui-tests
8+
webpack.config.js

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@
131131
"jupyterlab": {
132132
"extension": true,
133133
"outputDir": "jupyterlite_ai/labextension",
134-
"schemaDir": "schema"
134+
"schemaDir": "schema",
135+
"webpackConfig": "./webpack.config.js"
135136
}
136137
}

webpack.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
// Ignore source map warnings for @langchain/langgraph
3+
ignoreWarnings: [
4+
{
5+
module: /node_modules\/@langchain\/langgraph/
6+
},
7+
/Failed to parse source map.*@langchain/
8+
]
9+
};

0 commit comments

Comments
 (0)