1
0
Разклоняване 0
mirror of https://github.com/MillironX/setup-nextflow.git synced 2024-12-22 12:58:17 +00:00
setup-nextflow/tsconfig.json

17 реда
396 Б
JSON
Директно Normal View История

2022-06-15 16:25:29 +00:00
{
2022-11-13 04:07:59 +00:00
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "Node",
"outDir": "./lib",
2022-11-13 04:07:59 +00:00
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"sourceMap": true,
"lib": ["esnext", "dom"]
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules", "**/*.test.ts"]
2022-06-15 16:25:29 +00:00
}