Skip to content

Commit 06d2415

Browse files
author
hirsch88
committed
Improve typescript configurations for test cases
1 parent 262863c commit 06d2415

File tree

5 files changed

+38
-10
lines changed

5 files changed

+38
-10
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ typings/
2121
# Dist #
2222
dist/
2323
ormconfig.json
24+
tsconfig.build.json
2425

2526
# IDE #
2627
.idea/

.vscode/settings.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
22
"typescript.tsdk": "./node_modules/typescript/lib",
3-
"cSpell.enabled": true
3+
"cSpell.enabled": true,
4+
"files.exclude": {
5+
"tsconfig.build.json": true,
6+
"ormconfig.json": true
7+
}
48
}

package-scripts.js

+13-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ module.exports = {
2323
*/
2424
setup: series(
2525
'yarn install',
26+
'nps config',
2627
'nps db.migrate',
2728
'nps db.seed'
2829
),
@@ -31,6 +32,7 @@ module.exports = {
3132
*/
3233
build: series(
3334
'nps banner.build',
35+
'nps config',
3436
'nps lint',
3537
'nps clean.dist',
3638
'nps transpile',
@@ -42,22 +44,28 @@ module.exports = {
4244
db: {
4345
migrate: series(
4446
'nps banner.migrate',
45-
'nps db.config',
47+
'nps config',
4648
runFast('./node_modules/typeorm/cli.js migrations:run')
4749
),
4850
revert: series(
4951
'nps banner.revert',
50-
'nps db.config',
52+
'nps config',
5153
runFast('./node_modules/typeorm/cli.js migrations:revert')
5254
),
5355
seed: series(
5456
'nps banner.seed',
55-
'nps db.config',
57+
'nps config',
5658
runFast('./src/lib/seeds/cli.ts')
5759
),
58-
config: runFast('./src/lib/ormconfig.ts'),
5960
drop: runFast('./node_modules/typeorm/cli.js schema:drop')
6061
},
62+
/**
63+
* Creates the needed configuration files
64+
*/
65+
config: series(
66+
runFast('./src/lib/tsconfig.ts'),
67+
runFast('./src/lib/ormconfig.ts')
68+
),
6169
/**
6270
* These run various kinds of tests. Default is unit.
6371
*/
@@ -104,7 +112,7 @@ module.exports = {
104112
/**
105113
* Transpile your app into javascript
106114
*/
107-
transpile: `tsc`,
115+
transpile: `tsc --project ./tsconfig.build.json`,
108116
/**
109117
* Clean files and folders
110118
*/

src/lib/tsconfig.ts

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import * as path from 'path';
2+
import * as jsonfile from 'jsonfile';
3+
import * as tsconfig from '../../tsconfig.json';
4+
5+
6+
const content: any = tsconfig;
7+
content.include = [
8+
'src/**/*',
9+
];
10+
11+
const filePath = path.join(process.cwd(), 'tsconfig.build.json');
12+
jsonfile.writeFile(filePath, content, { spaces: 2 }, (err) => {
13+
if (err === null) {
14+
console.log('Successfully generated tsconfig.build.json form the .env file');
15+
} else {
16+
console.error('Failed to generate the otsconfig.build.json', err);
17+
}
18+
});

tsconfig.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,5 @@
2020
"allowSyntheticDefaultImports": true,
2121
"experimentalDecorators": true,
2222
"emitDecoratorMetadata": true
23-
},
24-
"include": [
25-
"src/**/*"
26-
]
23+
}
2724
}

0 commit comments

Comments
 (0)