2019-03-13 22:33:52 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-10-23 20:32:30 +02:00
|
|
|
"removeComments": true,
|
2023-04-18 22:22:03 +02:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": false,
|
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",
|
2023-03-21 22:57:55 +01: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": {
|
2023-03-21 22:57:55 +01:00
|
|
|
"config/*": [
|
|
|
|
"./config/*"
|
|
|
|
],
|
|
|
|
"@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",
|
2021-07-05 22:24:48 +02:00
|
|
|
"jest",
|
2022-06-12 19:59:14 +00:00
|
|
|
"mdx"
|
2019-03-13 22:33:52 +01:00
|
|
|
]
|
2019-10-23 20:32:30 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts",
|
2021-07-05 22:24:48 +02:00
|
|
|
"./**/*.tsx",
|
2022-07-17 09:20:28 +02:00
|
|
|
"./**/*.mdx"
|
2019-10-23 20:32:30 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2020-07-30 07:35:16 +02:00
|
|
|
".idea",
|
2023-04-13 08:24:38 +02:00
|
|
|
"packages/**/dist",
|
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
|
|
|
]
|
2023-03-21 22:57:55 +01:00
|
|
|
}
|