mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-17 05:11:43 +01:00
30 lines
689 B
JSON
30 lines
689 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ESNext",
|
|
"outDir": "./dist",
|
|
"moduleResolution": "Node",
|
|
"types": ["node", "mocha", "@cucumber/cucumber"],
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"incremental": true,
|
|
"declarationMap": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|