generated from SGFGOV/medusa-plugin-starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
56 lines (51 loc) · 1.2 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
{
"compilerOptions": {
"target": "ES2021",
"esModuleInterop": true,
"module": "Node16",
"moduleResolution": "Node16",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"declaration": true,
"sourceMap": false,
"inlineSourceMap": true,
"outDir": "./dist",
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"checkJs": false,
"lib": ["ES2021"],
"declarationMap": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"allowJs": true,
"incremental": false,
"paths": {
"@models": ["./src/models"],
"@services": ["./src/services"],
"@repositories": ["./src/repositories"],
"@types": ["./src/types"],
"@utils": ["./src/utils"]
}
},
"ts-node": {
"swc": true
},
"include": [
"src",
".medusa/types/*",
],
"exclude": [
"node_modules",
".medusa/server",
".medusa/admin",
".cache",
"__tests__",
"dist"
]
}