ghaction-upx/tsconfig.json

19 lines
337 B
JSON
Raw Normal View History

2020-01-08 14:26:34 -07:00
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
2020-10-20 17:53:33 -06:00
"es6",
"dom"
2020-01-08 14:26:34 -07:00
],
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
2020-05-06 13:17:47 -06:00
"esModuleInterop": true,
"sourceMap": true
2020-01-08 14:26:34 -07:00
},
"exclude": ["node_modules", "**/*.test.ts"]
}