initial
This commit is contained in:
17
tsconfig.json
Normal file
17
tsconfig.json
Normal 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
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user