-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtsconfig.json
35 lines (35 loc) · 940 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
34
35
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"checkJs": false,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": true,
"jsx": "react-jsx",
"lib": ["es2021"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitReturns": true,
"noImplicitThis": true,
"outDir": "./.medusa/server",
"resolveJsonModule": true,
"rootDir": "./",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": false,
"strictFunctionTypes": true,
"strictNullChecks": true,
"target": "es2021"
},
"exclude": [".cache", ".medusa/admin", ".medusa/server", "node_modules", "src/admin"],
"include": ["**/*", ".medusa/types/*"],
"ts-node": {
"swc": true
}
}