forked from zhihu/griffith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 865 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
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"target": "ES6",
"jsx": "react",
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"baseUrl": ".",
"paths": {
// link all packages without build step
"griffith-mp4": ["./packages/griffith-mp4/src/index.ts"],
"griffith-hls": ["./packages/griffith-hls/src/index.ts"],
"griffith-utils": ["./packages/griffith-utils/src/index.ts"],
"griffith-message": ["./packages/griffith-message/src/index.ts"],
"griffith": ["./packages/griffith/src/index.ts"]
},
"declaration": true,
// import @types/react
"allowSyntheticDefaultImports": true,
// import aphrodite/no-important
"moduleResolution": "Node",
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}