family-friendly/tsconfig.json

14 lines
282 B
JSON
Raw Normal View History

2024-01-05 08:40:15 -06:00
{
"compilerOptions": {
2024-01-05 14:49:28 -06:00
"outDir": "./dist",
2024-01-05 13:30:05 -06:00
"target": "ES2021",
2024-01-05 12:40:47 -06:00
"module": "ESNext",
"esModuleInterop": true,
"strict": true,
"moduleResolution": "node",
2024-01-05 14:49:28 -06:00
"declaration": true
2024-01-05 12:40:47 -06:00
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
2024-01-05 08:40:15 -06:00
}