@philipe1993/list-color 1.0.4 → 1.0.5
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 +14 -11
package/package.json
CHANGED
package/tsconfig.json
CHANGED
@@ -1,17 +1,20 @@
|
|
1
1
|
{
|
2
2
|
"compilerOptions": {
|
3
|
-
"target": "
|
4
|
-
"module": "
|
5
|
-
"
|
6
|
-
"
|
7
|
-
"
|
8
|
-
"
|
9
|
-
"
|
3
|
+
"target": "ES5",
|
4
|
+
"module": "CommonJS",
|
5
|
+
"outDir": "./dist", // Saída dos arquivos compilados
|
6
|
+
"rootDir": "./src", // Diretório dos arquivos fonte
|
7
|
+
"declaration": true, // Gera arquivos de tipos
|
8
|
+
"declarationMap": true, // Gera mapas de tipos
|
9
|
+
"sourceMap": true, // Gera mapas de código-fonte
|
10
|
+
"esModuleInterop": true, // Compatibilidade com módulos ES
|
11
|
+
"skipLibCheck": true // Ignora verificações em bibliotecas externas
|
10
12
|
},
|
11
13
|
"include": [
|
12
|
-
"src"
|
13
|
-
],
|
14
|
+
"src/**/*"
|
15
|
+
], // Inclui arquivos dentro de src/
|
14
16
|
"exclude": [
|
15
|
-
"node_modules"
|
16
|
-
|
17
|
+
"node_modules",
|
18
|
+
"dist"
|
19
|
+
] // Exclui pastas desnecessárias
|
17
20
|
}
|