procyon/tsconfig.json
2019-05-28 21:55:20 +02:00

39 lines
829 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"documentation/*": [
"./modules/documentation/src/modules/*"
],
"@romanjaros/treejs-components/*": [
"./modules/treejs-components/src/*"
],
"@romanjaros/treejs-api/*": [
"./modules/treejs-api/src/*"
],
"@romanjaros/treejs-auth/*": [
"./modules/treejs-auth/src/*"
],
"@romanjaros/treejs-constants/*": [
"./modules/treejs-constants/src/*"
],
"@romanjaros/treejs-utils": [
"./modules/treejs-utils/src/"
],
"@romanjaros/treejs-forms/*": [
"./modules/treejs-forms/src/*"
],
"@romanjaros/treejs-redux/*": [
"./modules/treejs-redux/src/*"
],
"@romanjaros/treejs-types/*": [
"./modules/treejs-types/src/*"
]
},
"types": [
"node",
"jest"
]
}
}