Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
}
webpack: (config, options) => ({
...config,
experiments: {
// Should only be required while we're using jsonld.js for contexts
// (because of how it uses http-client, which uses ky). Should go away
// when we switch to jsonld-context-parser.
topLevelAwait: true,
},
}),
};

module.exports = nextConfig
module.exports = nextConfig;
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@
"test": "jest"
},
"dependencies": {
"@m-ld/m-ld": "^0.9.1",
"@m-ld/m-ld": "0.10.0",
"@types/lodash-es": "^4.17.11",
"@types/node": "18.14.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"classnames": "2.3.2",
"eslint": "8.34.0",
"eslint-config-next": "13.2.1",
"json5": "^2.2.3",
"jsonld": "8.1.1",
"lodash-es": "^4.17.21",
"memory-level": "^1.0.0",
"n3": "^1.16.3",
"next": "13.2.1",
Expand All @@ -26,7 +29,9 @@
"rxjs": "^7.8.0",
"todomvc-app-css": "2.4.2",
"todomvc-common": "1.0.5",
"typescript": "4.9.5"
"typescript": "4.9.5",
"xql": "link:../xql",
"zod": "^3.22.4"
},
"devDependencies": {
"@rdfjs/types": "^1.1.0",
Expand All @@ -35,7 +40,9 @@
"@types/n3": "^1.10.4",
"fast-check": "^3.7.0",
"jest": "^29.4.3",
"pretty-print-json": "^2.0.2",
"rxjs-for-await": "^1.0.0",
"ts-node": "^10.9.1"
"ts-node": "^10.9.1",
"type-fest": "^4.2.0"
}
}
Loading