mirror of
https://github.com/unraid/api.git
synced 2026-02-07 00:18:53 -06:00
* feat: nestjs initial query implementation * feat: more permissions and resolver cleanup * fix: back to ubuntu to remain compatible with pkg docker building * feat: listen on socket as well as ports * feat: swap to bookworm instead of ubuntu
42 lines
2.0 KiB
JSON
42 lines
2.0 KiB
JSON
{
|
|
"include": [
|
|
"src/**/*",
|
|
".eslintrc.cjs",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"vite.config.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"paths": {
|
|
"@app/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"skipLibCheck": true,
|
|
"target": "ESNext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
|
|
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
|
"allowJs": false, /* Allow javascript files to be compiled. */
|
|
"outDir": "./dist", /* Redirect output structure to the directory. */
|
|
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
|
"removeComments": true, /* Do not emit comments to output. */
|
|
"strict": true, /* Enable all strict type-checking options. */
|
|
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
|
|
"strictNullChecks": true, /* Enable strict null checks. */
|
|
"noUnusedLocals": false, /* Report errors on unused locals. */
|
|
"noUnusedParameters": false, /* Report errors on unused parameters. */
|
|
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
"baseUrl": "./", /* Base directory to resolve non-absolute module names. */
|
|
"typeRoots": [
|
|
"node_modules/@types/",
|
|
"./src/types/"
|
|
], /* List of folders to include type definitions from. */
|
|
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
|
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
|
|
"resolveJsonModule": false
|
|
}
|
|
} |