16 lines
363 B
JSON
16 lines
363 B
JSON
{
|
|||
|
|
"extends": "../tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": ".",
|
||
|
|
"paths": {
|
||
|
|
"@project-e/shared": ["../packages/shared/src"],
|
||
|
|
"@project-e/shared/*": ["../packages/shared/src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|