_comuns/tsconfig.json
2025-07-07 13:53:19 -03:00

19 lines
498 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"
},
"include": ["src/**/*"]
}