-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.62 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "@zayne-labs/tsconfig",
"version": "0.2.1",
"type": "module",
"description": "A collection of TypeScript configurations for various projects, based on Total TypeScript's TSConfig Cheat Sheet, with a few additions.",
"repository": {
"type": "git",
"url": "https://github.com/ryan-zayne/tsconfig.git"
},
"homepage": "https://github.com/ryan-zayne/tsconfig#readme",
"license": "MIT",
"author": "Ryan Zayne",
"scripts": {
"release": "changeset publish"
},
"publishConfig": {
"access": "public"
},
"exports": {
"./tsc": "./tsc/dom/tsconfig.app.json",
"./tsc/dom": "./tsc/dom/tsconfig.app.json",
"./tsc/dom/app": "./tsc/dom/tsconfig.app.json",
"./tsc/dom/library": "./tsc/dom/tsconfig.library.json",
"./tsc/dom/library-monorepo": "./tsc/dom/tsconfig.library-monorepo.json",
"./tsc/no-dom": "./tsc/no-dom/tsconfig.app.json",
"./tsc/no-dom/app": "./tsc/no-dom/tsconfig.app.json",
"./tsc/no-dom/library": "./tsc/no-dom/tsconfig.library.json",
"./bundler": "./bundler/tsconfig.dom.json",
"./bundler/dom": "./bundler/tsconfig.dom.json",
"./bundler/dom/app": "./bundler/tsconfig.dom.json",
"./bundler/dom/library": "./bundler/tsconfig.dom.json",
"./bundler/dom/library-monorepo": "./bundler/tsconfig.dom.json",
"./bundler/next": "./bundler/tsconfig.next.json",
"./bundler/no-dom": "./bundler/tsconfig.no-dom.json",
"./bundler/no-dom/app": "./bundler/tsconfig.no-dom.json",
"./bundler/no-dom/library": "./bundler/tsconfig.no-dom.json",
"./bundler/no-dom/library-monorepo": "./bundler/tsconfig.no-dom.json"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.5"
}
}