2019-03-13 22:33:52 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-10-23 20:32:30 +02:00
|
|
|
"removeComments": true,
|
|
|
|
"noImplicitAny": true,
|
2019-11-03 20:05:24 +01:00
|
|
|
"esModuleInterop": true,
|
2019-10-23 20:32:30 +02:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2019-10-25 22:47:38 +02:00
|
|
|
"emitDeclarationOnly": false,
|
2019-10-23 20:32:30 +02:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
2019-12-27 10:44:22 +01:00
|
|
|
"moduleResolution": "node",
|
2019-10-23 20:32:30 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
2021-07-05 17:38:18 +02:00
|
|
|
"lib": ["es6", "es2015", "dom"],
|
2019-10-23 20:32:30 +02:00
|
|
|
"jsx": "react",
|
2019-10-25 22:47:38 +02:00
|
|
|
"baseUrl": "./",
|
2019-03-13 22:33:52 +01:00
|
|
|
"paths": {
|
2021-07-05 17:38:18 +02:00
|
|
|
"documentation/*": ["./packages/documentation/src/*"],
|
|
|
|
"@treejs/components/*": ["./packages/components/src/*"],
|
|
|
|
"@treejs/api/*": ["./packages/api/src/*"],
|
|
|
|
"@treejs/auth/*": ["./packages/auth/src/*"],
|
|
|
|
"@treejs/constants/*": ["./packages/constants/src/*"],
|
|
|
|
"@treejs/utils": ["./packages/utils/src/"],
|
|
|
|
"@treejs/forms/*": ["./packages/forms/src/*"],
|
|
|
|
"@treejs/hooks/*": ["./packages/hooks/src/*"],
|
|
|
|
"@treejs/localization/*": ["./packages/localization/src/*"],
|
|
|
|
"@treejs/styles/*": ["./packages/styles/src/*"],
|
|
|
|
"@treejs/types/*": ["./packages/types/src/*"]
|
2019-03-13 22:33:52 +01:00
|
|
|
},
|
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"jest"
|
|
|
|
]
|
2019-10-23 20:32:30 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts",
|
|
|
|
"./**/*.tsx"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2020-07-30 07:35:16 +02:00
|
|
|
".idea",
|
2021-07-05 17:38:18 +02:00
|
|
|
"./**/__tests__/*.tsx",
|
2019-10-25 22:47:38 +02:00
|
|
|
"**/tsconfig.json"
|
2019-10-23 20:32:30 +02:00
|
|
|
]
|
2020-01-22 20:41:12 +01:00
|
|
|
}
|