2022-11-11 19:58:11 -05:00
|
|
|
{
|
2022-11-16 13:53:42 -05:00
|
|
|
"transpileOnly": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "NodeNext",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"rootDir": "src/",
|
|
|
|
"outDir": "dist/",
|
|
|
|
"moduleResolution": "Node",
|
2022-11-17 12:58:19 -05:00
|
|
|
"typeRoots": [ "node_modules/@types", "./src/typings" ],
|
2022-11-16 13:53:42 -05:00
|
|
|
},
|
|
|
|
"include": [ "node_modules/@types", "src/**/*" ],
|
2022-11-11 19:58:11 -05:00
|
|
|
"exclude": [ "dist", "node_modules" ],
|
|
|
|
}
|