forked from ardeois/graphql-codegen-typescript-mock-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 732 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"esModuleInterop": true,
"importHelpers": true,
"experimentalDecorators": true,
"module": "esnext",
"target": "es2018",
"lib": ["es6", "esnext", "es2015", "dom"],
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"outDir": "./dist/",
"noImplicitAny": false,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"skipLibCheck": true
},
"exclude": ["node_modules", "tests", "dist"]
}