-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.01 KB
/
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
34
35
36
37
38
{
"compilerOptions": {
"plugins": [
{
"name": "typescript-plugin-css-modules",
"options": {
"customMatcher": "\\.(css|scss)$",
"classnameTransform":"camelCase"
}
}
],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"baseUrl": ".",
"sourceMap": true,
"strict": false,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"paths": {
"react": ["./node_modules/preact/compat/"],
"react-dom": ["./node_modules/preact/compat/"],
"@playkit-js/kaltura-player-js": ["./src/types/kaltura-player-js.d.ts"]
},
"lib": ["dom", "ESNext"],
"outDir": "./lib/",
"allowSyntheticDefaultImports": true
},
"files": ["./src/types/kaltura-player-js.d.ts"],
"include": ["src/**/*"]
}