forked from MoePlayer/vue-aplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 936 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"jsxFactory": "VueTsxSupport",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": ["node", "hls.js"],
"paths": {
"utils/*": ["utils/*"],
"@moefe/vue-audio": ["packages/@moefe/vue-audio/index.ts"],
"@moefe/vue-store": ["packages/@moefe/vue-store/index.ts"],
"@moefe/vue-touch": ["packages/@moefe/vue-touch/index.tsx"],
"@moefe/vue-aplayer": ["packages/@moefe/vue-aplayer/index.ts"]
}
},
"include": [
"types/**/*.ts",
"example/**/*.ts",
"example/**/*.tsx",
"packages/**/*.ts",
"packages/**/*.tsx",
"utils/**/*.ts",
"node_modules/@types/",
"node_modules/vue-tsx-support/enable-check.d.ts"
]
}