mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
34 lines
731 B
JSON
34 lines
731 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"lib": ["es2019", "dom"],
|
|
"types": ["jest", "node"],
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"sourceMap": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
|
|
"files": [
|
|
"./src/typings/hbs.d.ts"
|
|
],
|
|
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
],
|
|
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/__mocks__"
|
|
]
|
|
}
|