0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/integration-tests/tsconfig.json

18 lines
375 B
JSON
Raw Normal View History

{
"extends": "@silverhand/ts-config/tsconfig.base",
"compilerOptions": {
"rootDir": "src",
"isolatedModules": false,
2022-05-20 00:02:36 -05:00
"allowJs": true,
2022-12-12 08:15:09 -05:00
"outDir": "lib",
"baseUrl": ".",
"paths": {
2022-12-12 08:15:09 -05:00
"#src/*": [
"src/*"
]
},
"types": ["jest", "jest-matcher-specific-error", "jest-puppeteer", "expect-puppeteer"],
},
2022-12-12 08:15:09 -05:00
"include": ["src"]
}