-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(hilla): make tsconfig.json React compatible (#15084)
* feat(hilla): make tsconfig.json React compatible * chore: update tsconfig-reference.json * chore: update tsconfig version * test: update tsconfig latest version and instructions * chore: set tsconfig flow_version to 23.3.0.1
- Loading branch information
Showing
7 changed files
with
60 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
flow-server/src/main/resources/com/vaadin/flow/server/frontend/tsconfig-v23.3.0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// 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 | ||
{ | ||
"flow_version": "23.3.0", | ||
"compilerOptions": { | ||
"sourceMap": true, | ||
"inlineSources": true, | ||
"module": "esNext", | ||
"target": "es2020", | ||
"moduleResolution": "node", | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitReturns": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"experimentalDecorators": true, | ||
"useDefineForClassFields": false, | ||
"baseUrl": "frontend", | ||
"paths": { | ||
"@vaadin/flow-frontend": ["generated/jar-resources"], | ||
"@vaadin/flow-frontend/*": ["generated/jar-resources/*"], | ||
"Frontend/*": ["*"] | ||
} | ||
}, | ||
"include": [ | ||
"frontend/**/*.ts", | ||
"frontend/index.js", | ||
"types.d.ts" | ||
], | ||
"exclude": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"flow_version": "23.3.0"} | ||
{"flow_version": "latest"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters