forked from isomorphic-typescript/ts-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ts-monorepo.json
101 lines (99 loc) · 4.55 KB
/
ts-monorepo.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"version": "0.4.3",
"ttypescript": false, // right now having some trouble with an error "Error: Debug Failure. False expression: File extension for signature expected to be dts"
"port": 3000,
"packages": {
"@isomorphic-typescript": {
"ts-monorepo~": {
"extends": [],
"files": {
"json": {
"package.json": {
"author": "Alexander Leung",
"license": "MIT",
"description": "Yarn plugin for maintaining typescript monorepos",
"repository": {
"type": "git",
"url": "https://github.com/isomorphic-typescript/ts-monorepo.git"
},
"bin": "./build/ts-monorepo.js",
"devDependencies": [
"@types/node",
"@types/comment-json",
"@types/express",
"@types/semver"
],
"dependencies": [
"ansicolor",
"chokidar",
"comment-json",
"deepmerge",
"express",
"fp-ts",
"io-ts",
"io-ts-types",
"newtype-ts",
"monocle-ts",
"latest-version",
"semver",
"source-map-support",
"webpack",
"validate-npm-package-name",
"ts-node",
"typescript",
// Not using this at the moment, but could be nice to transition away from io-ts for cleaner code in the future
"typescript-is"
],
"peerDependencies": [
"ttypescript"
],
"keywords": [
"typescript",
"lerna",
"yarn",
"berry",
"webpack",
"monorepo",
"project",
"references",
"tsconfig",
"tsconfig.json",
"json",
"incremental",
"package.json"
]
},
"tsconfig.json": {
"compilerOptions": {
"module": "commonjs", // needed for es6 target, not es5 target
"target": "es6",
/* Type Definitions */
"lib": ["esnext"],
"types": ["node"],
/* Code Quality */
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true, // noImplicitAny noImplicitThis alwaysStrict strictBindCallApply strictFunctionTypes strictPropertyInitialization strictNullChecks
"stripInternal": true,
"plugins": [
{
"transform": "typescript-is/lib/transform-inline/transformer"
}
]
}
}
},
"ignore": {
".npmignore": [
"source",
"tsconfig.json",
"tsconfig.tsbuildinfo"
]
}
}
}
}
}
}