forked from eclipse-sw360/sw360-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
59 lines (59 loc) · 1.67 KB
/
tsconfig.json
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
// 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": "es6",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"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/*"],
"@/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",
"*.tsx"
],
"exclude": ["dist", "node_modules", "src/**/*.test.tsx"]
}