-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 932 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@huuyafwww/tsconfig-common",
"version": "1.1.1",
"private": false,
"description": "common tsconfig for me",
"homepage": "https://github.com/huuyafwww/tsconfig",
"bugs": {
"url": "https://github.com/huuyafwww/tsconfig/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huuyafwww/tsconfig.git"
},
"license": "MIT",
"main": "tsconfig.json",
"files": [
"tsconfig.json",
"LICENSE"
],
"scripts": {
"build": "mkdir src && touch src/index.ts && tsc --showConfig -p tsconfig.base.json | jq 'del(.files)' | jq '{\"$schema\": \"https://json.schemastore.org/tsconfig\"} + .' > tsconfig.json && rm -f src/index.ts && rmdir src",
"clean": "rimraf node_modules"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"node-jq": "^6.0.1",
"typescript": "^5.6.3"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}