Skip to content

Commit 9733d19

Browse files
committed
move base tsconfig; upd deps; bump to v0.1.1
1 parent 5b7b330 commit 9733d19

8 files changed

+91
-83
lines changed

config/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base",
2+
"extends": "../tsconfig",
33
"compilerOptions": {
44
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
55
"outDir": "../dist/cjs" /* Redirect output structure to the directory. */

config/tsconfig.esm.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base",
2+
"extends": "../tsconfig",
33
"compilerOptions": {
44
"module": "ESNext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
55
"outDir": "../dist/esm" /* Redirect output structure to the directory. */

config/tsconfig.types.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base",
2+
"extends": "../tsconfig",
33
"compilerOptions": {
44
"declaration": true /* Generates corresponding '.d.ts' file. */,
55
"emitDeclarationOnly": true,

config/tsconfig.umd.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base",
2+
"extends": "../tsconfig",
33
"compilerOptions": {
44
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
55
"declaration": false /* Generates corresponding '.d.ts' file. */

jest.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@ module.exports = {
77
transform: {
88
'^.+\\.(ts|tsx)$': 'ts-jest',
99
},
10+
globals: {
11+
'ts-jest': {
12+
tsconfig: 'tsconfig.json'
13+
}
14+
}
1015
}

package-lock.json

+75-72
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-typescript-package",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -50,17 +50,17 @@
5050
"dependencies": {},
5151
"devDependencies": {
5252
"@types/jest": "^26.0.19",
53-
"@typescript-eslint/eslint-plugin": "^4.11.0",
54-
"@typescript-eslint/parser": "^4.11.0",
53+
"@typescript-eslint/eslint-plugin": "^4.11.1",
54+
"@typescript-eslint/parser": "^4.11.1",
5555
"eslint": "^7.16.0",
5656
"eslint-config-prettier": "^7.1.0",
5757
"eslint-plugin-prettier": "^3.3.0",
5858
"jest": "^26.6.3",
5959
"prettier": "^2.2.1",
6060
"ts-jest": "^26.4.4",
61-
"ts-loader": "^8.0.12",
61+
"ts-loader": "^8.0.13",
6262
"typescript": "^4.1.3",
63-
"webpack": "^5.11.0",
64-
"webpack-cli": "^4.3.0"
63+
"webpack": "^5.11.1",
64+
"webpack-cli": "^4.3.1"
6565
}
6666
}

config/tsconfig.base.json tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@
6666
// "skipLibCheck": true, /* Skip type checking of declaration files. */
6767
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
6868
},
69-
"include": ["../src/**/*"]
69+
"include": ["src/**/*"]
7070
}

0 commit comments

Comments
 (0)