34 lines
583 B
JSON
34 lines
583 B
JSON
// tsconfig for building - only applies to the src directory
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "build/esm",
|
|
// Do not use the @@dev export for compiling
|
|
"customConditions": []
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../core/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../host/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../serial/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../shared/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../cc/tsconfig.build.json"
|
|
}
|
|
],
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/**/*.test.ts"
|
|
]
|
|
}
|