All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 38s
20 lines
338 B
JSON
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"
|
|
]
|
|
}
|