forked from binary-com/fe-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 1020 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"allowJs": true,
"removeComments": true,
"resolveJsonModule": true,
"typeRoots": ["./node_modules/@types"],
"sourceMap": true,
"outDir": "dist",
"strict": true,
"lib": ["esnext"],
"baseUrl": ".",
"paths": {
"models/*": ["src/models/*"],
"utils/*": ["src/utils/*"],
"views/*": ["src/utils/views/*"]
},
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "src/utils/manager", "src/utils/views", "src/utils/redmine.ts"] // ignore ts errors in "src/utils/manager", "src/utils/views", "src/utils/redmine.ts", will resolve them in seperate cards as they require more effort
}