3
0
Fork 0
mirror of https://gitea.com/docker/setup-qemu-action.git synced 2024-11-21 17:09:32 +01:00
docker-setup-qemu/tsconfig.json

19 lines
337 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"sourceMap": true
},
"exclude": ["node_modules", "**/*.test.ts"]
}