19 lines
498 B
JSON
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/**/*"]
|
|
}
|