mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
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
40 lines
1.1 KiB
JSON
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"
|
|
],
|
|
} |