* feat: new proxy package * chore: update nx workspace * chore: remove unused codegen lib * chore: add swc-node as build dependencies * chore: remove unused demo-app-e2e app * chore: reorganize demo apps * feat: working cross-engine proxy * chore: update docs * fix: readme file export * chore: update nextjs lib * chore: keep nextjs code
32 lines
586 B
JSON
32 lines
586 B
JSON
{
|
|
"extends": [
|
|
"plugin:@nx/react-typescript",
|
|
"next",
|
|
"next/core-web-vitals",
|
|
"../../.eslintrc.json"
|
|
],
|
|
"ignorePatterns": ["!**/*", ".next/**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": ["error", "apps/demo-app/pages"]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.jsx"],
|
|
"rules": {}
|
|
}
|
|
],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": "off"
|
|
},
|
|
"env": {
|
|
"jest": true
|
|
}
|
|
}
|