-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.03 KB
/
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
33
34
35
36
37
{
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"moduleResolution": "node",
"target": "es2017",
"lib": ["esnext", "es2017", "dom"],
"module": "es2015",
"declaration": true,
"declarationMap": true,
"declarationDir": "dist/types",
"sourceMap": true,
"outDir": "dist/lib",
"noImplicitAny": true,
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"typeRoots": ["node_modules/@types"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@/*": ["packages/*/src"],
"~/*": ["packages/*/test"]
},
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": "./packages/villus/test/mocks/schema.graphql",
"tadaOutputLocation": "./packages/villus/test/mocks/graphql-env.d.ts"
}
]
},
"include": ["packages/*/src", "packages/*/tests"]
}