7vsdk-pessoas 1.0.14 → 1.0.15
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/package.json +1 -1
- package/tsconfig.json +10 -8
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
3
|
+
"target": "ES2020", // moderno, async/await sem problemas
|
|
4
|
+
"module": "ESNext", // gera ESM, named exports
|
|
5
|
+
"moduleResolution": "node",
|
|
6
|
+
"outDir": "out",
|
|
6
7
|
"rootDir": "src",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
8
|
+
"strict": true,
|
|
9
|
+
"esModuleInterop": true, // compatibilidade com CommonJS se necessário
|
|
10
|
+
"forceConsistentCasingInFileNames": true,
|
|
11
|
+
"declaration": true, // gera arquivos .d.ts
|
|
12
|
+
"declarationMap": true // mapas para facilitar debugging de tipos
|
|
11
13
|
},
|
|
12
|
-
"include": ["src"]
|
|
14
|
+
"include": ["src/**/*"]
|
|
13
15
|
}
|