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