ba-auth_keystore_file/tsconfig.build.json
Alan Bridgeman d0dfa10536
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 40s
Lots of little updates to bring it in line with the other implemeentations etc...
2026-02-18 12:54:59 -06:00

20 lines
338 B
JSON

{
"extends": "./tsconfig.json",
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// File Layout
"rootDir": "./src",
"outDir": "./dist",
"types": []
},
"exclude": [
"node_modules",
"dist",
"tests"
],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
]
}