21 lines
352 B
JSON
21 lines
352 B
JSON
{
|
|
"extends": "@lilith/configs/typescript/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"~/data/*": ["./data/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts",
|
|
"**/tests"
|
|
]
|
|
}
|