procyon/tsconfig.json
Roman Jaroš e2fa8c36eb DEV;Fetch
2019-05-05 20:11:21 +02:00

36 lines
755 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-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"
]
}
}