Skip to content

Commit

Permalink
update build config for packages
Browse files Browse the repository at this point in the history
  • Loading branch information
JDMathew committed Jun 26, 2024
1 parent 5fc5f71 commit 4e70b05
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 21 deletions.
11 changes: 8 additions & 3 deletions packages/animations/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"outDir": "dist",
"target": "ES2016",
"jsx": "react-native",
"module": "CommonJS",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true
}
}
}
11 changes: 8 additions & 3 deletions packages/core/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"outDir": "dist",
"target": "ES2016",
"jsx": "react-native",
"module": "CommonJS",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true
}
}
}
11 changes: 8 additions & 3 deletions packages/extras/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"outDir": "dist",
"target": "ES2016",
"jsx": "react-native",
"module": "CommonJS",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true
}
}
}
11 changes: 8 additions & 3 deletions packages/forms/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"outDir": "dist",
"target": "ES2016",
"jsx": "react-native",
"module": "CommonJS",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true
}
}
}
11 changes: 8 additions & 3 deletions packages/internal/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts", "src/ama.rules.json"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"resolveJsonModule": true,
"outDir": "dist",
"target": "ES2016",
"jsx": "react-native",
"module": "CommonJS",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true
}
}
}
11 changes: 8 additions & 3 deletions packages/lists/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"outDir": "dist",
"target": "ES2016",
"jsx": "react-native",
"module": "CommonJS",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true
}
}
}
11 changes: 8 additions & 3 deletions packages/react-native/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
"compilerOptions": {
"outDir": "dist",
"target": "ES2016",
"jsx": "react-native",
"module": "CommonJS",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"declaration": true
}
}
}

0 comments on commit 4e70b05

Please sign in to comment.