-
Notifications
You must be signed in to change notification settings - Fork 20
/
tsconfig.json
32 lines (32 loc) · 932 Bytes
/
tsconfig.json
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
{
"files": [
"./package.json",
"./lib/index.d.ts",
"./node_modules/openapi3-ts/dist/index.d.ts",
"./node_modules/openapi3-ts/dist/model/index.d.ts",
"./node_modules/openapi3-ts/dist/model/OpenApi.d.ts",
"./node_modules/openapi3-ts/dist/model/Server.d.ts",
"./node_modules/openapi3-ts/dist/model/SpecificationExtension.d.ts",
"./node_modules/@types/swagger-schema-official/index.d.ts"
],
"compilerOptions": {
"target": "es2017",
"lib": ["es2017"],
"skipLibCheck": true,
"baseUrl": "./",
"moduleResolution": "node",
"resolveJsonModule": true,
"checkJs": true,
"module": "commonjs",
"allowJs": true,
"noEmit": true,
"alwaysStrict": true,
"noImplicitAny": true,
"typeRoots": ["node_modules/@types"],
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "**/node_modules/*"],
"typeAcquisition": {
"enable": true
}
}