You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
6.6 KiB
75 lines
6.6 KiB
{
|
|
"compilerOptions": {
|
|
"target": "ES2022", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
"lib": ["es2022", "dom"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
"experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
"emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
"module": "ESNext", /* Specify what module code is generated. */
|
|
"rootDir": "./src", /* Specify the root folder within your source files. */
|
|
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
"baseUrl": "./src", /* Specify the base directory to resolve non-relative module names. */
|
|
"typeRoots": ["node_modules/@types", "types"], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
"allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
|
"rewriteRelativeImportExtensions": true, /* Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files. */
|
|
"resolveJsonModule": true, /* Enable importing .json files. */
|
|
|
|
/* JavaScript Support */
|
|
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
|
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
|
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
|
|
/* Emit */
|
|
"declaration": false, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
"outDir": "dist", /* Specify an output folder for all emitted files. */
|
|
"removeComments": false, /* Disable emitting comments. */
|
|
"importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
"sourceRoot": "./src", /* Specify the root path for debuggers to find the reference source code. */
|
|
|
|
/* Interop Constraints */
|
|
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
// "isolatedDeclarations": true, /* Require sufficient annotation on exports so other tools can trivially generate declaration files. */
|
|
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
|
|
/* Type Checking */
|
|
"strict": true, /* Enable all strict type-checking options. */
|
|
"alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
"noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
"noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
"noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
|
"noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
|
"noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
|
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
|
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
|
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
|
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
|
|
|
/* Completeness */
|
|
"pretty": true,
|
|
"skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"docs",
|
|
"data/minio",
|
|
"src/client/**/*"
|
|
],
|
|
"files": [
|
|
"types/express.d.ts",
|
|
"types/express-session.d.ts"
|
|
]
|
|
}
|
|
|