mirror of
https://github.com/immich-app/immich.git
synced 2026-04-08 02:02:05 -04:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
21 lines
923 B
JSON
21 lines
923 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020", // Specify ECMAScript target version
|
|
"module": "commonjs", // Specify module code generation
|
|
"lib": ["es2020"], // Specify a list of library files to be included in the compilation
|
|
"types": ["./src/index.d.ts", "./node_modules/@extism/js-pdk"], // Specify a list of type definition files to be included in the compilation
|
|
"strict": true, // Enable all strict type-checking options
|
|
"esModuleInterop": true, // Enables compatibility with Babel-style module imports
|
|
"skipLibCheck": true, // Skip type checking of declaration files
|
|
"allowJs": true, // Allow JavaScript files to be compiled
|
|
"rootDir": "./src",
|
|
"noEmit": true // Do not emit outputs (no .js or .d.ts files)
|
|
},
|
|
"include": [
|
|
"src/**/*.ts" // Include all TypeScript files in src directory
|
|
],
|
|
"exclude": [
|
|
"node_modules" // Exclude the node_modules directory
|
|
]
|
|
}
|