1
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2024-11-25 01:38:56 +00:00
setup-python/tsconfig.json

13 lines
215 B
JSON
Raw Normal View History

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