setup-python/tsconfig.json

13 lines
215 B
JSON
Raw Normal View History

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