@philipe1993/list-color 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/tsconfig.json +11 -14
package/package.json
CHANGED
package/tsconfig.json
CHANGED
@@ -1,20 +1,17 @@
|
|
1
1
|
{
|
2
2
|
"compilerOptions": {
|
3
|
-
"target": "
|
4
|
-
"module": "
|
5
|
-
"
|
6
|
-
"
|
7
|
-
"
|
8
|
-
"
|
9
|
-
"
|
10
|
-
"esModuleInterop": true, // Compatibilidade com módulos ES
|
11
|
-
"skipLibCheck": true // Ignora verificações em bibliotecas externas
|
3
|
+
"target": "es6",
|
4
|
+
"module": "commonjs",
|
5
|
+
"jsx": "react",
|
6
|
+
"strict": true,
|
7
|
+
"esModuleInterop": true,
|
8
|
+
"skipLibCheck": true,
|
9
|
+
"forceConsistentCasingInFileNames": true
|
12
10
|
},
|
13
11
|
"include": [
|
14
|
-
"src
|
15
|
-
],
|
12
|
+
"src"
|
13
|
+
],
|
16
14
|
"exclude": [
|
17
|
-
"node_modules"
|
18
|
-
|
19
|
-
] // Exclui pastas desnecessárias
|
15
|
+
"node_modules"
|
16
|
+
]
|
20
17
|
}
|