setup-nextflow/tsconfig.json

14 lines
295 B
JSON
Raw Normal View History

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",
"outDir": "./lib",
"rootDir": "./src",
2022-11-13 04:07:59 +00:00
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true
},
"exclude": ["node_modules", "**/*.test.ts"]
2022-06-15 16:25:29 +00:00
}