mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
36 lines
770 B
JSON
36 lines
770 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "NodeNext",
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"paths": {
|
|
"@schema/*": [
|
|
"../shared/schema/*"
|
|
],
|
|
"@services/*": [
|
|
"../shared/services/*"
|
|
],
|
|
"@data/*": [
|
|
"../shared/data/*"
|
|
],
|
|
"@functions/*": [
|
|
"../shared/functions/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"scripts/**/*.ts",
|
|
"tests/**/*.test.ts",
|
|
"tests/utils.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |