3
0
Fork 0
mirror of https://gitea.com/actions/setup-python.git synced 2024-11-22 18:19:35 +01:00
setup-python/tsconfig.json

13 lines
215 B
JSON
Raw Normal View History

2019-08-20 16:27:52 +02:00
{
2023-04-17 02:14:52 +02:00
"extends": "@tsconfig/node16/tsconfig.json",
2019-08-20 16:27:52 +02:00
"compilerOptions": {
2023-04-17 02:14:52 +02:00
"outDir": "./lib",
"rootDir": "./src",
"resolveJsonModule": true,
2019-08-20 16:27:52 +02:00
},
2023-04-17 02:14:52 +02:00
"exclude": [
"node_modules",
"**/*.test.ts"
]
2019-08-20 16:27:52 +02:00
}