26 lines
482 B
JSON
26 lines
482 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"composite": true,
|
|
"lib": [
|
|
"ES2020"
|
|
],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../core"
|
|
}
|
|
]
|
|
} |