Files
puaros/packages/core/tsconfig.json
imfozilbek ba6ffb197c feat: add core package
Add @puaros/core package with TypeScript configuration, Vitest test setup, and package structure
2025-11-23 21:19:44 +05:00

21 lines
498 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"target": "ES2023",
"module": "CommonJS",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"composite": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"baseUrl": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
}