mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-05 02:02:51 +01:00
17 lines
334 B
JSON
17 lines
334 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"]
|
|
}
|