This commit is contained in:
2024-01-29 18:13:40 +01:00
commit fdc1d46652
7 changed files with 46527 additions and 0 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"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
]
}