ba-auth_keystore/tsconfig.build.json
Alan Bridgeman 6895111f69
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 31s
Initial Commit
2026-02-17 19:48:41 -06:00

20 lines
339 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"
]
}