checkout/tsconfig.json
Matthew Endsley dbd025a70e Add ref output to action
This value is the SHA1 commit of the repository ref that was actually
checked out.
2022-10-31 17:30:18 -07:00

17 lines
337 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es2021"
],
"outDir": "./lib",
"rootDir": "./src",
"declaration": true,
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": ["__test__", "lib", "node_modules"]
}