Files
tunarr/shared/tsconfig.json
Christian Benincasa fa6db00f27 feat: search parser overhaul
Overhaul of the search parser to include:
* Numeric range queries with support for both inclusive, exclusive, and
  half open ranges
* Better parsing of dates
* Virtual fields (search on "minutes" and have it translated to a
  "duration" query)
* More tests
* First class support for date fields
2025-11-19 15:15:18 -05:00

40 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "NodeNext",
"lib": [
"ES2022",
"DOM" // We have to declare this so vitest doesn't explode
],
"moduleResolution": "nodenext",
"rootDir": ".",
"outDir": "dist",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": true,
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"types": [
"vitest/globals",
]
},
"include": [
"./src/**/*.ts",
"./scripts/**/*.ts"
],
"exclude": [
"./dist/**/*",
"./**/*.ignore.ts"
],
}