blob: df6335850027ce28e1aca28505268a8d7ce7a2ad [file] [log] [blame]
bitPogoc68c7f82018-11-12 17:16:31 +01001{
2 "extends": "./tsconfig.base.json",
3 "compilerOptions": {
4 "target": "esnext",
5 "module": "esnext",
6 "sourceMap": true,
7 "lib": [
8 "esnext",
9 "es5",
10 "dom",
11 "dom.iterable",
12 "scripthost"
13 ]
14 },
15 "include": [
16 "src/**/*.ts",
17 "src/**/*.tsx",
18 "src/**/*.vue",
19 "tests/**/*.ts",
20 "tests/**/*.ts",
21 "tests/**/*.tsx"
22 ],
23 "exclude": [
24 "node_modules"
25 ]
26}