-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (31 loc) · 1.64 KB
/
Copy pathtsconfig.json
File metadata and controls
36 lines (31 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* tsconfig.json is provided for ui autocomplete support, jhipster types are experimental */
{
"include": [".blueprint/**/*.ts", "./cli", "./generators", "*.ts"],
"compilerOptions": {
/* Language and Environment */
"target": "ES2025" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"types": ["node"],
/* Modules */
"rootDir": "./" /* Specify the root folder within your source files. */,
/* JavaScript Support */
"allowJs": true /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */,
/* Emit */
"noEmit": true,
/* Interop Constraints */
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */,
"rewriteRelativeImportExtensions": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
/* Type Checking */
"noUnusedLocals": true /* Report errors on unused local variables. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"noImplicitAny": false,
/* Typescript v5 compatibility */
"module": "node16",
"allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
"strict": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
}