Skip to content

Commit

Permalink
fix: Keep track of tsconfig files for building command
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadSaeedGoda committed Mar 22, 2024
1 parent b210212 commit 007df8b
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/services/auth/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ jest/*.json

# Specific IDE or framework configuration files
# (Adjust as needed for your setup)
**/tsconfig.json
**/tslint.json
**/prettier.config.json
node_modules/
21 changes: 21 additions & 0 deletions src/services/auth/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es6",
"module": "commonjs",
"strict": true,
"allowJs": true,
"outDir": "dist",
"rootDir": "src",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}
1 change: 0 additions & 1 deletion src/services/habits/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jest/*.json

# Specific IDE or framework configuration files
# (Adjust as needed for your setup)
**/tsconfig.json
**/tslint.json
**/prettier.config.json
node_modules/
21 changes: 21 additions & 0 deletions src/services/habits/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es6",
"module": "commonjs",
"strict": true,
"allowJs": true,
"outDir": "dist",
"rootDir": "src",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}
1 change: 0 additions & 1 deletion src/services/tests/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jest/*.json

# Specific IDE or framework configuration files
# (Adjust as needed for your setup)
**/tsconfig.json
**/tslint.json
**/prettier.config.json
node_modules/
Expand Down
22 changes: 22 additions & 0 deletions src/services/tests/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es6",
"module": "commonjs",
"strict": true,
"allowJs": true,
"outDir": "dist",
"rootDir": "../",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"useDefineForClassFields": true,
"baseUrl": "./",
"paths": {
"@habits/*": ["../habits/src/*"]
}
},
"exclude": [
"node_modules"
]
}

0 comments on commit 007df8b

Please sign in to comment.