mirror of
https://github.com/android-actions/setup-android.git
synced 2026-09-22 06:21:10 +00:00
26 lines
518 B
JSON
26 lines
518 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "es2022",
|
|
"moduleResolution": "bundler",
|
|
"lib": [
|
|
"ES2024"
|
|
],
|
|
"types": ["node", "jest"],
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"lib"
|
|
]
|
|
}
|