@infinitetoken/tsconfig 0.1.2 → 0.1.3
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/node.json +9 -0
- package/package.json +15 -4
- package/react-native.json +12 -0
- package/server.json +15 -0
package/node.json
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infinitetoken/tsconfig",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Shared base tsconfig for InfiniteToken TypeScript packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"config",
|
|
@@ -21,22 +21,33 @@
|
|
|
21
21
|
"type": "commonjs",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": "./tsconfig.json",
|
|
24
|
+
"./node": "./node.json",
|
|
24
25
|
"./package.json": "./package.json",
|
|
26
|
+
"./react-native": "./react-native.json",
|
|
27
|
+
"./server": "./server.json",
|
|
25
28
|
"./tsconfig.json": "./tsconfig.json"
|
|
26
29
|
},
|
|
27
30
|
"files": [
|
|
28
|
-
"tsconfig.json"
|
|
31
|
+
"tsconfig.json",
|
|
32
|
+
"node.json",
|
|
33
|
+
"react-native.json",
|
|
34
|
+
"server.json"
|
|
29
35
|
],
|
|
30
36
|
"scripts": {
|
|
31
|
-
"
|
|
37
|
+
"fix": "eslint . --fix",
|
|
38
|
+
"lint": "eslint .",
|
|
32
39
|
"release": "git push --follow-tags",
|
|
33
40
|
"release:major": "npm version major && npm run release",
|
|
34
41
|
"release:minor": "npm version minor && npm run release",
|
|
35
42
|
"release:patch": "npm version patch && npm run release",
|
|
36
43
|
"test": "tsc --noEmit -p test/tsconfig.json",
|
|
37
|
-
"
|
|
44
|
+
"verify": "npm run lint && npm test",
|
|
45
|
+
"preversion": "npm run verify"
|
|
38
46
|
},
|
|
47
|
+
"prettier": "@infinitetoken/eslint-config/prettier",
|
|
39
48
|
"devDependencies": {
|
|
49
|
+
"@infinitetoken/eslint-config": "^0.1.4",
|
|
50
|
+
"eslint": "^9.39.4",
|
|
40
51
|
"typescript": "^6.0.3"
|
|
41
52
|
},
|
|
42
53
|
"publishConfig": {
|
package/server.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"resolveJsonModule": true,
|
|
6
|
+
"types": ["jest", "node"],
|
|
7
|
+
"declaration": false,
|
|
8
|
+
"declarationMap": false,
|
|
9
|
+
"noUnusedLocals": false,
|
|
10
|
+
"noUnusedParameters": false,
|
|
11
|
+
"noImplicitReturns": false,
|
|
12
|
+
"noFallthroughCasesInSwitch": false,
|
|
13
|
+
"preserveConstEnums": false
|
|
14
|
+
}
|
|
15
|
+
}
|