qpa-client/tsconfig.json

20 lines
396 B
JSON
Raw Normal View History

2019-05-18 17:05:56 +02:00
{
"compilerOptions": {
"skipLibCheck": true,
"sourceMap": true,
"jsx": "react",
2019-10-07 17:06:08 +02:00
"resolveJsonModule": true,
"esModuleInterop": true,
2019-05-18 17:05:56 +02:00
"lib": [
"es7",
2019-10-04 17:21:47 +02:00
"esnext.asynciterable",
"dom"
2019-05-18 17:05:56 +02:00
]
},
2019-10-04 11:31:10 +02:00
"include": [
2019-10-06 11:30:10 +02:00
"packages", "@types/index.d.ts", "@types/graphql.d.ts"],
2019-05-18 17:05:56 +02:00
"exclude": [
2019-08-03 17:30:54 +02:00
".*/__tests__/.*", "node_modules", "dist", "lib", "__tests__"
2019-05-18 17:05:56 +02:00
]
}