criollo/tsconfig.json

28 lines
693 B
JSON
Raw Normal View History

2024-10-09 12:41:16 +00:00
{
"compilerOptions": {
"target": "ES2021",
"esModuleInterop": true,
"module": "Node16",
"moduleResolution": "Node16",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
2024-10-16 10:06:47 +00:00
"declaration": false,
2024-10-09 12:41:16 +00:00
"sourceMap": false,
2024-10-16 10:06:47 +00:00
"inlineSourceMap": true,
"outDir": "./.medusa/server",
2024-10-09 12:41:16 +00:00
"rootDir": "./",
"baseUrl": ".",
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"checkJs": false
},
"ts-node": {
"swc": true
},
2024-10-16 10:06:47 +00:00
"include": [".medusa", "src"],
"exclude": ["node_modules", ".medusa/server", ".medusa/admin", ".cache"]
2024-10-09 12:41:16 +00:00
}