32 lines
856 B
JSON
32 lines
856 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2023"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"$config": ["config/index.ts"],
|
|
"$config/*": ["config/*"],
|
|
"$db/*": ["db/*"],
|
|
"$blurt/*": ["blurt/*"],
|
|
"$indexer/*": ["indexer/*"],
|
|
"$api/*": ["api/*"],
|
|
"$log": ["log/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
|
}
|