17 lines
288 B
JSON
17 lines
288 B
JSON
{
|
|
"extends": "@lilith/configs/typescript/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"bin/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|