27 lines
466 B
JSON
Raw Normal View History

2024-11-15 22:55:53 +01:00
{
2024-12-16 21:25:36 +00: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": {
"@/*": [
"./src/*"
]
}
2024-12-16 21:25:36 +00:00
},
"exclude": [
"node_modules",
"./*.ts",
"__test__"
]
2024-11-15 22:55:53 +01:00
}