forked from ardatan/graphql-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (31 loc) · 836 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"module": "esnext",
"target": "es2018",
"lib": ["es6", "esnext", "es2015", "es2017.object"],
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"outDir": "./dist/",
"rootDir": "./src/",
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"importHelpers": true,
"typeRoots": [ "./types", "./node_modules/@types"],
"baseUrl": ".",
"paths": {
"*": ["./types/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}