blob: 6d96bec87376a5b7a0a27d7f7baa797f327a2ac3 [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,
bitPogo8bbf37b2018-11-13 16:31:25 +01007 "typeRoots": [
Pablo Grass6686ab02018-11-20 11:02:10 +01008 "./src/types",
9 "./src/types/client",
10 "./src/types/server",
11 "./node_modules/@types"
bitPogo8bbf37b2018-11-13 16:31:25 +010012 ],
13 "types": [
Pablo Grass6686ab02018-11-20 11:02:10 +010014 "webpack-env",
15 "jest",
16 "node"
bitPogo8bbf37b2018-11-13 16:31:25 +010017 ],
bitPogoc68c7f82018-11-12 17:16:31 +010018 "lib": [
19 "esnext",
bitPogo8bbf37b2018-11-13 16:31:25 +010020 "es5",
bitPogoc68c7f82018-11-12 17:16:31 +010021 "dom",
22 "dom.iterable",
23 "scripthost"
Pablo Grass6e0b7122018-11-20 10:51:19 +010024 ],
25 "allowJs": true
bitPogoc68c7f82018-11-12 17:16:31 +010026 },
27 "include": [
Pablo Grass6686ab02018-11-20 11:02:10 +010028 "./*.js",
29 "src/**/*.ts",
30 "src/**/*.tsx",
31 "src/**/*.vue",
32 "tests/**/*.ts",
Pablo Grass6686ab02018-11-20 11:02:10 +010033 "tests/**/*.tsx"
bitPogoc68c7f82018-11-12 17:16:31 +010034 ],
35 "exclude": [
Pablo Grassde763d72018-11-15 14:42:45 +010036 "node_modules"
bitPogoc68c7f82018-11-12 17:16:31 +010037 ]
38}