@etsoo/notificationbase 1.1.51 → 1.1.53

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/src/index.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './Notification';
2
- export * from './NotificationContainer';
1
+ export * from "./Notification";
2
+ export * from "./NotificationContainer";
package/tsconfig.cjs.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
- "compilerOptions": {
3
- /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
- "target": "ES2020",
5
- "module": "NodeNext",
6
- "moduleResolution": "NodeNext",
7
- "isolatedModules": true,
8
- "outDir": "./lib/cjs",
9
- "noEmit": false,
10
- "declaration": true,
11
- "strict": true,
12
- "esModuleInterop": true,
13
- "skipLibCheck": true,
14
- "forceConsistentCasingInFileNames": true
15
- },
16
- "include": ["src"]
2
+ "compilerOptions": {
3
+ /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
+ "target": "ES2020",
5
+ "module": "NodeNext",
6
+ "moduleResolution": "NodeNext",
7
+ "isolatedModules": true,
8
+ "outDir": "./lib/cjs",
9
+ "noEmit": false,
10
+ "declaration": true,
11
+ "strict": true,
12
+ "esModuleInterop": true,
13
+ "skipLibCheck": true,
14
+ "forceConsistentCasingInFileNames": true
15
+ },
16
+ "include": ["src"]
17
17
  }
package/tsconfig.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
- "compilerOptions": {
3
- /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
- "target": "ES2020",
5
- "module": "ESNext",
6
- "moduleResolution": "Node10",
7
- "isolatedModules": true,
8
- "outDir": "./lib/mjs",
9
- "noEmit": false,
10
- "declaration": true,
11
- "strict": true,
12
- "esModuleInterop": true,
13
- "skipLibCheck": true,
14
- "forceConsistentCasingInFileNames": true
15
- },
16
- "include": ["src"]
2
+ "compilerOptions": {
3
+ /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
+ "target": "ES2020",
5
+ "module": "ESNext",
6
+ "moduleResolution": "Node10",
7
+ "isolatedModules": true,
8
+ "outDir": "./lib/mjs",
9
+ "noEmit": false,
10
+ "declaration": true,
11
+ "strict": true,
12
+ "esModuleInterop": true,
13
+ "skipLibCheck": true,
14
+ "forceConsistentCasingInFileNames": true
15
+ },
16
+ "include": ["src"]
17
17
  }
package/.eslintignore DELETED
@@ -1,3 +0,0 @@
1
- .github
2
- node_modules
3
- lib/
package/.eslintrc.json DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "env": {
3
- "browser": true,
4
- "node": true,
5
- "es6": true,
6
- "jest": true
7
- },
8
- "extends": ["airbnb-base", "prettier"],
9
- "parser": "@typescript-eslint/parser",
10
- "parserOptions": {
11
- "ecmaVersion": 6,
12
- "sourceType": "module"
13
- },
14
- "plugins": ["@typescript-eslint"],
15
- "rules": {
16
- "class-methods-use-this": "off",
17
- "import/extensions": ["error", "never"],
18
- "import/prefer-default-export": "off",
19
- "@typescript-eslint/no-unused-vars": ["error"]
20
- },
21
- "settings": {
22
- "import/resolver": {
23
- "node": {
24
- "paths": ["src"],
25
- "extensions": [".ts"]
26
- }
27
- }
28
- }
29
- }
package/.prettierignore DELETED
@@ -1,5 +0,0 @@
1
- .github
2
- node_modules
3
- lib/
4
- package-lock.json
5
- README.md
package/.prettierrc DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "trailingComma": "none",
3
- "tabWidth": 4,
4
- "semi": true,
5
- "singleQuote": true
6
- }