mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
40 lines
892 B
JSON
40 lines
892 B
JSON
{
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"target": "ES2017",
|
|
"module": "ES6",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2017", "DOM"],
|
|
"types": ["jest", "node"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"sourceMap": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"removeComments": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
|
|
"files": [
|
|
"./src/typings/hbs.d.ts"
|
|
],
|
|
|
|
"include": [
|
|
"./src/index.ts"
|
|
],
|
|
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|
|
|