hetzner-openapi/tsconfig.json
2024-01-29 18:13:40 +01:00

18 lines
813 B
JSON

{
"compilerOptions": {
"target": "es5",
"declaration": true,
"noImplicitAny": false, // Set the JavaScript language version
"module": "commonjs", // Specify module code generation
"outDir": "./dist_ts", // Redirect output structure to the directory
"rootDir": "./ts", // Specify the root directory of input files
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enable interoperability between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of all declaration files (*.d.ts)
"forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file
},
"include": [
"ts/**/*" // Include all files in the ts_openapi directory
]
}