Typicalc/tsconfig.json

40 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2023-10-23 12:15:57 +00:00
// 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
2021-01-26 15:05:33 +00:00
{
2023-10-23 12:15:57 +00:00
"_version": "9",
2021-01-26 15:05:33 +00:00
"compilerOptions": {
"sourceMap": true,
2023-10-23 12:15:57 +00:00
"jsx": "react-jsx",
2021-01-26 15:05:33 +00:00
"inlineSources": true,
"module": "esNext",
2023-10-23 12:15:57 +00:00
"target": "es2020",
"moduleResolution": "bundler",
2021-01-26 15:05:33 +00:00
"strict": true,
2023-10-23 12:15:57 +00:00
"skipLibCheck": true,
2021-01-26 15:05:33 +00:00
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
2023-10-23 12:15:57 +00:00
"noUnusedLocals": false,
"noUnusedParameters": false,
"experimentalDecorators": true,
"useDefineForClassFields": false,
"baseUrl": "frontend",
"paths": {
"@vaadin/flow-frontend": ["generated/jar-resources"],
"@vaadin/flow-frontend/*": ["generated/jar-resources/*"],
"Frontend/*": ["*"]
}
2021-01-26 15:05:33 +00:00
},
"include": [
2023-10-23 12:15:57 +00:00
"frontend/**/*",
2021-01-26 15:05:33 +00:00
"types.d.ts"
],
2023-10-23 12:15:57 +00:00
"exclude": [
"frontend/generated/jar-resources/**"
]
2021-01-26 15:05:33 +00:00
}