-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathtsconfig.json
More file actions
98 lines (98 loc) · 2.02 KB
/
tsconfig.json
File metadata and controls
98 lines (98 loc) · 2.02 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright (c) Helio Chissini de Castro, 2023. Part of the SW360 Frontend Project.
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
// License-Filename: LICENSE
{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": false,
"checkJs": false,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"strictNullChecks": true,
"typeRoots": [
"node_modules/@types",
"./types"
],
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"paths": {
"next-sw360": [
"./src/components/sw360"
],
"@/app/*": [
"./src/app/*"
],
"@/assets/*": [
"./src/assets/*"
],
"@/contexts": [
"./src/contexts"
],
"@/components/*": [
"./src/components/*"
],
"@/constants": [
"./src/object-types/Constants"
],
"@/hooks": [
"./src/hooks"
],
"@/messages": [
"./messages"
],
"@/object-types": [
"./src/object-types"
],
"@/services/*": [
"./src/services/*"
],
"@/styles/*": [
"./src/styles/*"
],
"@/utils/*": [
"./src/utils/*"
],
"@/utils": [
"./src/utils"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"next.config.js",
"nextauth.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"dist",
"node_modules",
"src/**/*.test.tsx"
]
}