-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtsconfig.mustache
39 lines (39 loc) · 1.01 KB
/
tsconfig.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": false,
"target": "{{#supportsES6}}ES6{{/supportsES6}}{{^supportsES6}}ES5{{/supportsES6}}",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strict": true,
"moduleResolution": "node",
"removeComments": true,
"sourceMap": true,
"noLib": false,
"declaration": true,
"emitDeclarationOnly": true,
"lib": ["dom", "es6", "es5", "dom.iterable", "scripthost"],
"outDir": "dist",
"declarationDir": "./types",
"typeRoots": [
"node_modules/@types"
],
"resolveJsonModule": true
},
"exclude": [
"*.tgz",
".openapi-generator-ignore",
".openapi-generator",
"jest.config.ts",
"bin",
"dist",
"examples",
"node_modules",
"nonversioned",
"oas",
"templates",
"tests",
"test.*",
"./types/**/*"
]
}