@knapsack/app
Version:
Build Design Systems on top of knapsack, by Basalt
36 lines (35 loc) • 938 B
JSON
{
"extends": "../tsconfig.base.json",
"include": ["src", "../custom.d.ts"],
"exclude": [],
"compilerOptions": {
"composite": true,
// "declarationDir": "./dist",
"outDir": "./dist",
// "outFile": "./dist/index.d.ts"
"rootDir": "./src"
// "baseUrl": "./",
/**
* Specifies the location where debugger should locate TypeScript files instead of source locations.Use this flag
if the sources will be located at run - time in a different location than that at design - time.The location specified will be embedded in the sourceMap to direct the debugger where the source files will be located.
*/
// "sourceRoot": ""
},
"references": [
{
"path": "../packages/utils"
},
{
"path": "../packages/schema-utils"
},
{
"path": "../packages/core"
},
{
"path": "../design-system"
}
],
"typeAcquisition": {
"enable": true
}
}