mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-22 13:00:56 -05:00
19 lines
402 B
JSON
19 lines
402 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"newLine": "lf",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"jest.config.ts"
|
|
]
|
|
}
|