criollo/tsconfig.json

37 lines
719 B
JSON
Raw Normal View History

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