setup-nextflow/tsconfig.json
Edmund Miller db82c135bd build: Setup typescript tests
I don't know why I do this to myself. But it's done now.
https://github.com/OneSignal/OneSignal-Website-SDK
Yoinked the configs from here
2022-11-17 19:32:25 +00:00

13 lines
311 B
JSON

{
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./lib",
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules", "**/*.test.ts"]
}