mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
ecd369cd30
* Switched from TomCat to Jetty * Hibernate migrations * Removed dependency on Spring-Boot-Content-FS * Migrate to Jackson 3 * Migrate LegacyExtensionFinder -> IndexedExtensionFinder * Fix code inspection issues * Exclude Config classes from Sonar coverage calcualtion * Add FileStorageServiceTest * Add tests for (De-)serializers * Exclude H2 package from Sonar coverage reporting * Add Sonar scan * Update JVM in CI * Update dependency versions
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
// This TypeScript configuration file is generated by vaadin-maven-plugin.
|
|
// This is needed for TypeScript compiler to compile your TypeScript code in the project.
|
|
// It is recommended to commit this file to the VCS.
|
|
// You might want to change the configurations to fit your preferences
|
|
// For more information about the configurations, please refer to http://www.typescriptlang.org/docs/handbook/tsconfig-json.html
|
|
{
|
|
"_version": "9.1",
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"jsx": "react-jsx",
|
|
"inlineSources": true,
|
|
"module": "esNext",
|
|
"target": "es2023",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"baseUrl": "src/main/frontend",
|
|
"paths": {
|
|
"@vaadin/flow-frontend": [
|
|
"generated/jar-resources"
|
|
],
|
|
"@vaadin/flow-frontend/*": [
|
|
"generated/jar-resources/*"
|
|
],
|
|
"Frontend/*": [
|
|
"*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/main/frontend/**/*",
|
|
"types.d.ts"
|
|
],
|
|
"exclude": [
|
|
"src/main/frontend/generated/jar-resources/**"
|
|
]
|
|
}
|