/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "ES2021", 4 "esModuleInterop": true, 5 "module": "Node16", 6 "moduleResolution": "Node16", 7 "emitDecoratorMetadata": true, 8 "experimentalDecorators": true, 9 "skipLibCheck": true, 10 "skipDefaultLibCheck": true, 11 "declaration": false, 12 "sourceMap": false, 13 "inlineSourceMap": true, 14 "outDir": "./.medusa/server", 15 "rootDir": "./", 16 "jsx": "react-jsx", 17 "forceConsistentCasingInFileNames": true, 18 "resolveJsonModule": true, 19 "checkJs": false, 20 "strictNullChecks": true 21 }, 22 "ts-node": { 23 "swc": true 24 }, 25 "include": [ 26 "**/*", 27 ".medusa/types/*" 28 ], 29 "exclude": [ 30 "node_modules", 31 ".medusa/server", 32 ".medusa/admin", 33 ".cache" 34 ] 35 }