mirror of
https://github.com/actions/checkout
synced 2024-11-10 07:21:41 +00:00
15 lines
322 B
JSON
15 lines
322 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"lib": ["es6"],
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["__test__", "lib", "node_modules"]
|
|
}
|