@w0s/tsconfig 1.1.0 → 1.2.0

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.
@@ -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,4 +1,4 @@
1
- class Rectangle {
1
+ export class Rectangle {
2
2
  width: number;
3
3
  height: number;
4
4
 
@@ -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
  }
@@ -1,4 +1,4 @@
1
- class Rectangle {
1
+ export class Rectangle {
2
2
  width: number;
3
3
  height: number;
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w0s/tsconfig",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "TSConfig file used on w0s.jp",
5
5
  "keywords": [
6
6
  "tsconfig"
@@ -10,6 +10,7 @@
10
10
  "files": [
11
11
  ""
12
12
  ],
13
+ "type": "module",
13
14
  "main": "tsconfig.json",
14
15
  "repository": {
15
16
  "type": "git",
package/tsconfig.json CHANGED
@@ -24,6 +24,7 @@
24
24
  /* Interop Constraints */
25
25
  "esModuleInterop": true,
26
26
  "forceConsistentCasingInFileNames": true,
27
+ "verbatimModuleSyntax": true,
27
28
 
28
29
  /* Language and Environment */
29
30
  "target": "ES2022",