-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 909 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 909 Bytes
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
37
{
"compilerOptions": {
"lib": [
"ES2022",
"dom"
],
"outDir": "./target/classes/static/out-tsc",
"removeComments": true,
"baseUrl": "src/main/webapp",
"esModuleInterop": true,
"jsx": "react",
"moduleResolution": "bundler",
"target": "ES2022",
"module": "ES2022",
"resolveJsonModule": true,
"paths": {},
"sourceMap": true,
"alwaysStrict": true,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"strictNullChecks": true,
"typeRoots": ["src/main/webapp/types", "node_modules/@types"]
},
"exclude": [
"node_modules/**/*",
"**/build/**/*",
"**/out/**/*"
]
}