build: enhance nx build (#2948)

This commit is contained in:
Alex Yang
2023-07-01 01:17:31 +08:00
parent d24009f494
commit d120f3ada8
27 changed files with 559 additions and 138 deletions

View File

@@ -18,7 +18,12 @@
"experimentalDecorators": true,
"types": ["react/experimental"]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/types/types.d.ts"],
"include": [
"next-env.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/types/types.d.ts"
],
"exclude": ["node_modules"],
"references": [
{
@@ -55,6 +60,11 @@
},
{
"path": "../../plugins/copilot"
},
// Static Server
{
"path": "./tsconfig.node.json"
}
]
}