2018-04-20 23:20:17 -03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": false,
|
2018-08-28 17:50:34 -03:00
|
|
|
"baseUrl": "./",
|
2019-03-08 06:36:12 -03:00
|
|
|
"declaration": true,
|
2018-04-20 23:20:17 -03:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-08-28 17:50:34 -03:00
|
|
|
"skipLibCheck": true,
|
2018-04-20 23:20:17 -03:00
|
|
|
"mapRoot": "./dist/",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "./dist",
|
2025-09-21 16:37:32 -03:00
|
|
|
"paths": {},
|
2018-04-20 23:20:17 -03:00
|
|
|
"sourceMap": true,
|
|
|
|
"target": "es6",
|
2025-09-21 16:37:32 -03:00
|
|
|
"typeRoots": ["node_modules/@types"]
|
2018-04-20 23:20:17 -03:00
|
|
|
},
|
2025-09-21 16:37:32 -03:00
|
|
|
"include": ["test/**/*", "src/**/*"],
|
|
|
|
"exclude": ["dist", "node_modules"]
|
|
|
|
}
|