我正在尝试在 Typescript Expo 项目中使用 NPM 7 工作区。现在我想保持正常的 Expo 结构(使用根App.tsx
文件),但我想隔离工作区中的某些部分代码。
我在工作区中编译 TS 代码时遇到问题。我尝试了很多方法来配置 TS 和/或 Webpack 配置,但没有成功。所以这里是重现它的最小文件结构:
package.json
tsconfig.json
App.tsx
/packages
/core
index.ts
package.json
这是根的相关部分./package.json
{
"main": "node_modules/expo/AppEntry.js",
"workspaces": [
"packages/*"
],
"scripts": {...},
"dependencies": {...},
"devDependencies": {...},
"private": true
}
./tsconfig.json
是最低限度的
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true
}
}
也./packages/core/package.json
很简单
{
"name": "core",
"private": true
}
并且简单地为这个例子./packages/core/index.ts
导出一个函数log()
export function log(s: string) {
console.log(s)
}
最后, in ./App.tsx
, 只是导入函数并尝试调用它
import { log } from 'core'
log('hello')
//...
它不编译
当我尝试为网络构建(expo build:web
例如)时,出现以下错误
✖ Expo Webpack
Compiled with some errors in 1.62s
Failed to compile.
[path]/node_modules/core/index.ts 1:21
Module parse failed: Unexpected token (1:21)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
> export function log(s: string) {
| console.log(s)
| }
我并不感到惊讶,因为该/node_modules
目录被自愿排除在外。
所以我的问题是我需要做什么才能编译工作区代码?我希望它可以即时工作(即:未预编译),就像它是我项目中的一些常规文件一样。它完全可行吗?
一些失败的修复尝试
我主要尝试调整 tsconfig 以使其正常工作(尽管我想知道它是否会改变任何东西)
#1
我尝试添加"include": ["./node_modules/core"],
. 它没有效果(同样的错误)。./tsconfig.json
#2
我尝试/packages/core/tsconfig.json
使用复合选项创建以下内容:
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"composite": true
}
}
并在根目录中引用它tsconfig.json
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true
},
"references": [{ "path": "./node_modules/core" }]
// or even with:
"references": [{ "path": "./packages/core" }]
}
它没有效果(同样的错误)。
非常感谢