Skip to content

Commit

Permalink
chore: upd ts-conf
Browse files Browse the repository at this point in the history
  • Loading branch information
semarche-kaltura committed Jan 29, 2024
1 parent b3b4fa2 commit 2747677
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
{
"compilerOptions": {
"target": "ES5",
"rootDir": ".",
"outDir": "build",
"preserveSymlinks": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"forceConsistentCasingInFileNames": true,
"lib": ["es2018", "dom"],
"allowJs": false,
"baseUrl": "..",
"experimentalDecorators": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"module": "commonjs",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"pretty": true,
"moduleResolution": "Node",
"preserveSymlinks": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"experimentalDecorators": true,
"downlevelIteration": true
"target": "ES5",
"types": ["node"],
"paths": {
"*": ["./src/*", "./node_modules/*"]
},
"lib": ["es2015", "dom"]
},
"include": ["src/**/*.tsx", "src/**/*.ts"],
"exclude": ["node_modules"]
"include": ["src/**/*.tsx", "src/**/*.ts", "node_modules/@playkit-js/kaltura-player-js/types.d.ts"]
}

0 comments on commit 2747677

Please sign in to comment.