Files
bodyshop-media-server/tsconfig.json
2025-11-04 15:00:44 -08:00

27 lines
1.3 KiB
JSON

{
"compilerOptions": {
/* Language and Environment */
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
/* Modules */
"module": "NodeNext" /* Specify what module code is generated. */,
"moduleResolution": "NodeNext",
"resolveJsonModule": true /* Enable importing .json files */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
/* Emit */
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
"inlineSourceMap": false /* Include sourcemap files inside the emitted JavaScript. */,
"inlineSources": true /* Include source code in the sourcemaps inside the emitted JavaScript. */,
/* Interop Constraints */
"isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist"]
}