20 lines
487 B
JSON
20 lines
487 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"paths": {
|
|
"@naturcalabacera/shared": ["../../packages/shared/src/index.ts"],
|
|
"@naturcalabacera/shared/*": ["../../packages/shared/src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|