0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/cli/tsconfig.json

16 lines
313 B
JSON
Raw Normal View History

2022-09-26 22:15:01 -05:00
{
"extends": "@silverhand/ts-config/tsconfig.base",
"compilerOptions": {
"outDir": "lib",
"declaration": true,
2022-11-21 06:18:32 -05:00
"moduleResolution": "nodenext",
2022-12-12 08:52:17 -05:00
"module": "esnext",
2022-10-13 01:39:09 -05:00
"target": "es2022",
"types": ["node", "jest"]
2022-09-26 22:15:01 -05:00
},
"include": [
2022-12-11 07:07:21 -05:00
"src"
],
"exclude": ["**/alteration-scripts"]
2022-09-26 22:15:01 -05:00
}