2024-11-02 16:21:03 +08:00
|
|
|
{
|
2024-12-17 16:39:34 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["es2017"],
|
|
|
|
"allowJs": true,
|
|
|
|
"jsx": "react-native", // 添加这行
|
|
|
|
"noEmit": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"strict": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"babel.config.js",
|
|
|
|
"metro.config.js",
|
|
|
|
"jest.config.js"
|
|
|
|
]
|
|
|
|
}
|