File size: 512 Bytes
cc442ef 785a2fd 77c96f8 785a2fd cc442ef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
"extends": "@repo/tsconfig/base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"module": "CommonJS",
"moduleResolution": "node",
"noEmit": false,
"allowImportingTsExtensions": false,
"target": "ES2020",
"lib": [
"ES2020"
],
"types": [
"node"
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
]
} |