forked from kyma-project/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·33 lines (33 loc) · 947 Bytes
/
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
{
"include": ["./src/**/*", "./gatsby/**/*"],
"exclude": ["./netlify/functions", "**/node_modules/**/*"],
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"lib": ["dom", "es2017"],
"jsx": "react",
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmit": true,
"skipLibCheck": true,
"baseUrl": "./",
"resolveJsonModule": true,
"importHelpers": true,
"paths": {
"@common/*": ["./src/common/*"],
"@components/*": ["./src/components/*"],
"@config": ["./config.json"],
"@content": ["./content"],
"@static": ["./static"],
"@styled": ["./src/common/styled"],
"@styled/*": ["./src/common/styled/*"],
"@root/*": ["./src/root/*"],
"@typings/*": ["./src/types/*"],
"@views/*": ["./src/views/*"]
}
}
}