@w0s/tsconfig 1.1.0 → 1.2.1
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/__tests__/invalid/compilerOptions/typeChecking/07 noImplicitOverride.ts +3 -3
- package/__tests__/invalid/compilerOptions/typeChecking/09 noImplicitThis.ts +1 -1
- package/__tests__/valid/compilerOptions/typeChecking/07 noImplicitOverride.ts +3 -3
- package/__tests__/valid/compilerOptions/typeChecking/09 noImplicitThis.ts +1 -1
- package/package.json +3 -2
- package/tsconfig.json +1 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
class Album {
|
|
1
|
+
export class Album {
|
|
2
2
|
setup() {}
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
class MLAlbum extends Album {
|
|
5
|
+
export class MLAlbum extends Album {
|
|
6
6
|
override setup() {}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
class SharedAlbum extends Album {
|
|
9
|
+
export class SharedAlbum extends Album {
|
|
10
10
|
setup() {}
|
|
11
11
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
class Album {
|
|
1
|
+
export class Album {
|
|
2
2
|
setup() {}
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
class MLAlbum extends Album {
|
|
5
|
+
export class MLAlbum extends Album {
|
|
6
6
|
override setup() {}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
class SharedAlbum extends Album {
|
|
9
|
+
export class SharedAlbum extends Album {
|
|
10
10
|
override setup() {}
|
|
11
11
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w0s/tsconfig",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "TSConfig file used on w0s.jp",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tsconfig"
|
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
""
|
|
12
12
|
],
|
|
13
|
+
"type": "module",
|
|
13
14
|
"main": "tsconfig.json",
|
|
14
15
|
"repository": {
|
|
15
16
|
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/SaekiTominaga/
|
|
17
|
+
"url": "git+https://github.com/SaekiTominaga/config.git"
|
|
17
18
|
},
|
|
18
19
|
"scripts": {
|
|
19
20
|
"test": "tsc --project __tests__/tsconfig-valid.json",
|