@jeromefitz/tsconfig 1.1.1 → 1.1.3-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/node16.json +15 -0
- package/package.json +12 -20
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2021 Nice Group of People, LLC
|
|
3
|
+
Copyright (c) 2021-2023 Nice Group of People, LLC
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/node16.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "@jeromefitz/tsconfig-node-16",
|
|
4
|
+
"extends": "./base.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"forceConsistentCasingInFileNames": true,
|
|
8
|
+
"lib": ["ES2022"],
|
|
9
|
+
"module": "Node16",
|
|
10
|
+
"moduleResolution": "Node16",
|
|
11
|
+
"skipLibCheck": true,
|
|
12
|
+
"strict": true,
|
|
13
|
+
"target": "ES2022"
|
|
14
|
+
}
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,40 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jeromefitz/tsconfig",
|
|
3
|
-
"version": "1.1.1",
|
|
3
|
+
"version": "1.1.3-canary.1",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "TypeScript Configuration",
|
|
6
|
+
"repository": "jeromefitz/packages.git",
|
|
5
7
|
"author": {
|
|
6
8
|
"name": "Jerome Fitzgerald",
|
|
7
9
|
"email": "j@jeromefitzgerald.com",
|
|
8
10
|
"url": "https://jeromefitzgerald.com"
|
|
9
11
|
},
|
|
10
12
|
"license": "MIT",
|
|
11
|
-
"
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "ssh://git@github.com/jeromefitz/packages.git",
|
|
14
|
-
"directory": "config/tsconfig"
|
|
15
|
-
},
|
|
13
|
+
"private": false,
|
|
16
14
|
"engines": {
|
|
17
15
|
"node": ">=16"
|
|
18
16
|
},
|
|
19
|
-
"publishConfig": {
|
|
20
|
-
"registry": "https://registry.npmjs.org/"
|
|
21
|
-
},
|
|
22
|
-
"private": false,
|
|
23
17
|
"scripts": {
|
|
24
|
-
"build": "
|
|
25
|
-
"dev": "tsup-node --watch",
|
|
26
|
-
"---": "",
|
|
18
|
+
"build": "pnpm run clean && pnpm run copy",
|
|
27
19
|
"clean": "rm -rf .turbo && rm -rf dist",
|
|
28
20
|
"clean:install": "pnpm run clean && rm -rf node_modules",
|
|
29
21
|
"copy": "mkdir -p ./dist && ./scripts/copy.sh",
|
|
30
|
-
"
|
|
31
|
-
"lint
|
|
32
|
-
"
|
|
33
|
-
"lint": "pnpm run
|
|
34
|
-
"lint:fix": "pnpm run lint:eslint --fix && pnpm run lint:prettier --write",
|
|
35
|
-
"--- ": "",
|
|
22
|
+
"dev": "echo '#tsup-node --watch'",
|
|
23
|
+
"format:lint": "pnpm run lint:eslint --fix && pnpm run format:prettier --write",
|
|
24
|
+
"format:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --loglevel warn",
|
|
25
|
+
"lint": "pnpm run format:prettier --check",
|
|
36
26
|
"semantic-release": "semantic-release"
|
|
37
27
|
},
|
|
38
|
-
"
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"registry": "https://registry.npmjs.org/"
|
|
30
|
+
},
|
|
39
31
|
"sideEffects": false
|
|
40
32
|
}
|