Skip to content

Commit 2c3a50d

Browse files
feat(PLA-840): try build dir
1 parent 0f64aaf commit 2c3a50d

File tree

4 files changed

+21
-53
lines changed

4 files changed

+21
-53
lines changed

.gitignore

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
node_modules/
2-
dist/
3-
4-
/*.js
5-
/*.d.ts
6-
/*.js.map
2+
build/
3+
dist/

src/types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ export type Variant =
5353
| 'go19x19'
5454
| 'backgammon'
5555
| 'nackgammon'
56+
| 'breakthrough'
57+
| 'minibreakthrough'
5658
| undefined;
5759
export type PlayerIndex = typeof playerIndexs[number];
5860
export type Letter = typeof letters[number];

tsconfig.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
"filesGlob": ["src/*.ts"],
44
"exclude": [],
55
"compilerOptions": {
6-
"outDir": "./",
6+
"outDir": "./build/",
7+
"baseUrl": "src",
78
"declaration": true,
9+
"declarationDir": "./build/",
10+
"declarationMap": true,
811
"removeComments": true,
912
"noEmitOnError": false,
1013
"noUnusedLocals": true,

yarn.lock

+13-47
Original file line numberDiff line numberDiff line change
@@ -107,29 +107,29 @@
107107
resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-8.2.3.tgz#bbeb55fbc73f28ea6de601fbfa4613f58d785323"
108108
integrity sha512-ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw==
109109

110-
"@typescript-eslint/eslint-plugin@4.32.0":
111-
version "4.32.0"
112-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.32.0.tgz#46d2370ae9311092f2a6f7246d28357daf2d4e89"
113-
integrity sha512-+OWTuWRSbWI1KDK8iEyG/6uK2rTm3kpS38wuVifGUTDB6kjEuNrzBI1MUtxnkneuWG/23QehABe2zHHrj+4yuA==
110+
"@typescript-eslint/eslint-plugin@^4.32.0":
111+
version "4.33.0"
112+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz#c24dc7c8069c7706bc40d99f6fa87edcb2005276"
113+
integrity sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==
114114
dependencies:
115-
"@typescript-eslint/experimental-utils" "4.32.0"
116-
"@typescript-eslint/scope-manager" "4.32.0"
115+
"@typescript-eslint/experimental-utils" "4.33.0"
116+
"@typescript-eslint/scope-manager" "4.33.0"
117117
debug "^4.3.1"
118118
functional-red-black-tree "^1.0.1"
119119
ignore "^5.1.8"
120120
regexpp "^3.1.0"
121121
semver "^7.3.5"
122122
tsutils "^3.21.0"
123123

124-
"@typescript-eslint/experimental-utils@4.32.0":
125-
version "4.32.0"
126-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.32.0.tgz#53a8267d16ca5a79134739129871966c56a59dc4"
127-
integrity sha512-WLoXcc+cQufxRYjTWr4kFt0DyEv6hDgSaFqYhIzQZ05cF+kXfqXdUh+//kgquPJVUBbL3oQGKQxwPbLxHRqm6A==
124+
"@typescript-eslint/experimental-utils@4.33.0":
125+
version "4.33.0"
126+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz#6f2a786a4209fa2222989e9380b5331b2810f7fd"
127+
integrity sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==
128128
dependencies:
129129
"@types/json-schema" "^7.0.7"
130-
"@typescript-eslint/scope-manager" "4.32.0"
131-
"@typescript-eslint/types" "4.32.0"
132-
"@typescript-eslint/typescript-estree" "4.32.0"
130+
"@typescript-eslint/scope-manager" "4.33.0"
131+
"@typescript-eslint/types" "4.33.0"
132+
"@typescript-eslint/typescript-estree" "4.33.0"
133133
eslint-scope "^5.1.1"
134134
eslint-utils "^3.0.0"
135135

@@ -143,14 +143,6 @@
143143
"@typescript-eslint/typescript-estree" "4.33.0"
144144
debug "^4.3.1"
145145

146-
"@typescript-eslint/scope-manager@4.32.0":
147-
version "4.32.0"
148-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.32.0.tgz#e03c8668f8b954072b3f944d5b799c0c9225a7d5"
149-
integrity sha512-DK+fMSHdM216C0OM/KR1lHXjP1CNtVIhJ54kQxfOE6x8UGFAjha8cXgDMBEIYS2XCYjjCtvTkjQYwL3uvGOo0w==
150-
dependencies:
151-
"@typescript-eslint/types" "4.32.0"
152-
"@typescript-eslint/visitor-keys" "4.32.0"
153-
154146
"@typescript-eslint/scope-manager@4.33.0":
155147
version "4.33.0"
156148
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz#d38e49280d983e8772e29121cf8c6e9221f280a3"
@@ -159,29 +151,11 @@
159151
"@typescript-eslint/types" "4.33.0"
160152
"@typescript-eslint/visitor-keys" "4.33.0"
161153

162-
"@typescript-eslint/types@4.32.0":
163-
version "4.32.0"
164-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.32.0.tgz#52c633c18da47aee09449144bf59565ab36df00d"
165-
integrity sha512-LE7Z7BAv0E2UvqzogssGf1x7GPpUalgG07nGCBYb1oK4mFsOiFC/VrSMKbZQzFJdN2JL5XYmsx7C7FX9p9ns0w==
166-
167154
"@typescript-eslint/types@4.33.0":
168155
version "4.33.0"
169156
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72"
170157
integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==
171158

172-
"@typescript-eslint/typescript-estree@4.32.0":
173-
version "4.32.0"
174-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.32.0.tgz#db00ccc41ccedc8d7367ea3f50c6994b8efa9f3b"
175-
integrity sha512-tRYCgJ3g1UjMw1cGG8Yn1KzOzNlQ6u1h9AmEtPhb5V5a1TmiHWcRyF/Ic+91M4f43QeChyYlVTcf3DvDTZR9vw==
176-
dependencies:
177-
"@typescript-eslint/types" "4.32.0"
178-
"@typescript-eslint/visitor-keys" "4.32.0"
179-
debug "^4.3.1"
180-
globby "^11.0.3"
181-
is-glob "^4.0.1"
182-
semver "^7.3.5"
183-
tsutils "^3.21.0"
184-
185159
"@typescript-eslint/typescript-estree@4.33.0":
186160
version "4.33.0"
187161
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz#0dfb51c2908f68c5c08d82aefeaf166a17c24609"
@@ -195,14 +169,6 @@
195169
semver "^7.3.5"
196170
tsutils "^3.21.0"
197171

198-
"@typescript-eslint/visitor-keys@4.32.0":
199-
version "4.32.0"
200-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.32.0.tgz#455ba8b51242f2722a497ffae29313f33b14cb7f"
201-
integrity sha512-e7NE0qz8W+atzv3Cy9qaQ7BTLwWsm084Z0c4nIO2l3Bp6u9WIgdqCgyPyV5oSPDMIW3b20H59OOCmVk3jw3Ptw==
202-
dependencies:
203-
"@typescript-eslint/types" "4.32.0"
204-
eslint-visitor-keys "^2.0.0"
205-
206172
"@typescript-eslint/visitor-keys@4.33.0":
207173
version "4.33.0"
208174
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz#2a22f77a41604289b7a186586e9ec48ca92ef1dd"

0 commit comments

Comments
 (0)