2024-11-15 22:55:53 +01:00
|
|
|
{
|
2025-01-25 22:30:52 +01:00
|
|
|
"include": ["./src/**/*.ts", "./tests/**/*.ts"],
|
2024-11-15 22:55:53 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"paths": {
|
2025-01-25 22:30:52 +01:00
|
|
|
"@/*": ["./src/*"]
|
2024-11-15 22:55:53 +01:00
|
|
|
}
|
2024-12-16 21:25:36 +00:00
|
|
|
},
|
2025-01-25 22:30:52 +01:00
|
|
|
"exclude": ["node_modules", "./*.ts", "__test__"]
|
2024-11-15 22:55:53 +01:00
|
|
|
}
|