File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ package.json
1010webpack.config.js
1111/error-screenshots
1212drivers
13- tsconfig.json
1413.idea
1514types.d.ts
1615/frontend /generated
Original file line number Diff line number Diff line change 1+ // This TypeScript configuration file is generated by vaadin-maven-plugin.
2+ // This is needed for TypeScript compiler to compile your TypeScript code in the project.
3+ // It is recommended to commit this file to the VCS.
4+ // You might want to change the configurations to fit your preferences
5+ // For more information about the configurations, please refer to http://www.typescriptlang.org/docs/handbook/tsconfig-json.html
6+ {
7+ "flow_version" : " 23.3.0" ,
8+ "compilerOptions" : {
9+ "sourceMap" : true ,
10+ "inlineSources" : true ,
11+ "module" : " esNext" ,
12+ "target" : " es2020" ,
13+ "moduleResolution" : " node" ,
14+ "strict" : true ,
15+ "skipLibCheck" : true ,
16+ "noFallthroughCasesInSwitch" : true ,
17+ "noImplicitReturns" : true ,
18+ "noImplicitAny" : true ,
19+ "noImplicitThis" : false ,
20+ "noUnusedLocals" : false ,
21+ "noUnusedParameters" : false ,
22+ "experimentalDecorators" : true ,
23+ "useDefineForClassFields" : false ,
24+ "baseUrl" : " frontend" ,
25+ "paths" : {
26+ "@vaadin/flow-frontend" : [" generated/jar-resources" ],
27+ "@vaadin/flow-frontend/*" : [" generated/jar-resources/*" ],
28+ "Frontend/*" : [" *" ]
29+ }
30+ },
31+ "include" : [
32+ " frontend/**/*.ts" ,
33+ " frontend/index.js" ,
34+ " types.d.ts"
35+ ],
36+ "exclude" : [
37+ " frontend/generated/jar-resources"
38+ ]
39+ }
You can’t perform that action at this time.
0 commit comments