mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
34 lines
757 B
JSON
34 lines
757 B
JSON
{
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["node", "jest"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"sourceMap": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"importHelpers": false,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
|
|
"include": [
|
|
"./src/index.ts"
|
|
],
|
|
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|
|
|