Skip to content

Commit

Permalink
feat: exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuever committed Dec 1, 2024
1 parent e9e820a commit a7cb2fd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions packages/react-native/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
"outputs": ["{options.outputPath}"],
"options": {
"cwd": "packages/react-native",
"command": [
"echo $PWD",
"echo '3333'"
],
"outputPath": "dist/packages/react-native",
"tsConfig": "packages/react-native/tsconfig.lib.json",
"project": "packages/react-native/package.json",
Expand Down
14 changes: 7 additions & 7 deletions packages/react-native/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
// "baseUrl": "./",
"jsx": "react-jsx",
"moduleResolution": "node",
"allowJs": true,
// "allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
// "strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@infinite-list/data-model": ["../data-model/src"],
// "@/*": [
// "./*"
// ],
}
// "paths": {
// "@infinite-list/data-model": ["../data-model/src"],
// // "@/*": [
// // "./*"
// // ],
// }
},
"files": [],
"include": [],
Expand Down
4 changes: 3 additions & 1 deletion packages/react-native/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"jest.config.ts",
"src/**/*.spec.ts",
"src/**/*.spec.tsx",
"src/test-setup.ts"
"src/test-setup.ts",
"../data-model",
"**/data-model"
],
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"]
}

0 comments on commit a7cb2fd

Please sign in to comment.