Skip to content

Commit 99cba3a

Browse files
javier-godoypaodb
authored andcommitted
chore: version tsconfig.json
See vaadin/flow#15485
1 parent 5ae7e28 commit 99cba3a

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ package.json
1010
webpack.config.js
1111
/error-screenshots
1212
drivers
13-
tsconfig.json
1413
.idea
1514
types.d.ts
1615
/frontend/generated

tsconfig.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
}

0 commit comments

Comments
 (0)