forked from prismake/typegql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
37 lines (37 loc) · 1022 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
33
34
35
36
37
{
"compilerOptions": {
"paths": { "*": ["types/*"] },
"module": "ESNext",
"lib": ["es2018", "dom"],
"target": "ES2018",
"noImplicitAny": true,
"moduleResolution": "node",
"noImplicitUseStrict": true,
"types": ["reflect-metadata", "jest", "node"],
"forceConsistentCasingInFileNames": true,
"pretty": true,
"baseUrl": ".",
"rootDir": "./src",
"declarationDir": "./types",
"declaration": true,
"strictNullChecks": true,
"preserveConstEnums": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"stripInternal": true,
"sourceMap": true,
"plugins": [{ "transform": "typescript-rtti/dist/transformer" }]
},
"exclude": [
"./examples",
"./types"
// , "**/*.spec.ts", "./src/specs" // for some reason these cause the build to fail
],
"ts-node": {
"compiler": "ttypescript"
}
}