_comuns/tsconfig.json
2025-07-07 14:03:33 -03:00

20 lines
525 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM"],
"module": "ESNext",
"moduleResolution": "bundler", // Suporta package.exports
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"skipLibCheck": true,
"rootDir": "./src",
"outDir": "./dist-import"
},
"include": ["src/**/*"]
}