2018-04-21 02:59:30 -03:00
|
|
|
{
|
2023-01-31 23:11:06 -03:00
|
|
|
"compilerOptions": {
|
2023-03-06 08:50:43 -03:00
|
|
|
"strict": false,
|
2020-12-31 15:36:19 -03:00
|
|
|
"allowJs": true,
|
2019-05-16 10:27:26 -03:00
|
|
|
"downlevelIteration": true,
|
2018-04-21 02:59:30 -03:00
|
|
|
"baseUrl": "./",
|
|
|
|
"declaration": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2022-11-18 22:39:14 -03:00
|
|
|
"esModuleInterop": true,
|
2018-08-28 17:50:19 -03:00
|
|
|
"skipLibCheck": true,
|
2018-04-21 02:59:30 -03:00
|
|
|
"mapRoot": "./dist/",
|
2022-10-28 23:17:35 -03:00
|
|
|
"moduleResolution": "Node",
|
2022-11-18 22:39:14 -03:00
|
|
|
"module": "ESNext",
|
2024-05-25 19:11:01 -03:00
|
|
|
"forceConsistentCasingInFileNames": false,
|
2022-11-18 22:39:14 -03:00
|
|
|
"resolveJsonModule": true,
|
2018-04-21 02:59:30 -03:00
|
|
|
"outDir": "./dist",
|
|
|
|
"paths": {
|
2019-05-15 22:30:14 -03:00
|
|
|
"*": [
|
|
|
|
"types/*"
|
|
|
|
],
|
|
|
|
"botlib/*": [
|
|
|
|
"node_modules/botlib/*"
|
|
|
|
],
|
|
|
|
"pragmatismo-io-framework/*": [
|
|
|
|
"node_modules/pragmatismo-io-framework/*"
|
|
|
|
]
|
2018-04-21 02:59:30 -03:00
|
|
|
},
|
|
|
|
"sourceMap": true,
|
2019-05-16 10:38:59 -03:00
|
|
|
"target": "ESNext",
|
2019-05-15 22:30:14 -03:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
2018-04-21 02:59:30 -03:00
|
|
|
},
|
2022-01-03 13:11:21 -03:00
|
|
|
"include": [
|
2018-04-21 02:59:30 -03:00
|
|
|
"src/**/*",
|
2018-10-30 19:52:40 -03:00
|
|
|
"packages/*.gbapp/**/*",
|
2022-01-03 18:40:42 -03:00
|
|
|
"packages/*.gblib/**/*",
|
2024-02-17 17:27:53 -03:00
|
|
|
"packages/*.gbtheme/**/*"
|
2018-04-21 02:59:30 -03:00
|
|
|
],
|
2019-05-15 22:30:14 -03:00
|
|
|
"exclude": [
|
|
|
|
"dist",
|
2024-02-17 17:27:53 -03:00
|
|
|
"node_modules",
|
|
|
|
"**/*.test.ts"
|
|
|
|
]
|
2019-05-15 22:30:14 -03:00
|
|
|
}
|