UNPKG

658 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "es5",
4 "module": "esnext",
5 "strict": true,
6 "jsx": "preserve",
7 "importHelpers": true,
8 "moduleResolution": "node",
9 "esModuleInterop": true,
10 "allowSyntheticDefaultImports": true,
11 "sourceMap": true,
12 "baseUrl": ".",
13 "types": [
14 "webpack-env",
15 "jest"
16 ],
17 "paths": {
18 "@/*": [
19 "src/*"
20 ]
21 },
22 "lib": [
23 "esnext",
24 "dom",
25 "dom.iterable",
26 "scripthost"
27 ]
28 },
29 "include": [
30 "src/**/*.ts",
31 "src/**/*.tsx",
32 "src/**/*.vue",
33 "tests/**/*.ts",
34 "tests/**/*.tsx"
35 ],
36 "exclude": [
37 "node_modules"
38 ]
39}