This commit includes updates to the billing schema to allow for the creation of custom billing plans. These types of plans have no line items associated with them. Changes have also been made to properly handle the absence of primary line items in such plans.
31 lines
595 B
JSON
31 lines
595 B
JSON
{
|
|
"extends": "@kit/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"~/config/*": ["./config/*"],
|
|
"~/components/*": ["./components/*"],
|
|
"~/lib/*": ["./lib/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts",
|
|
"*.ts",
|
|
"*.tsx",
|
|
"*.mjs",
|
|
"./config/**/*.ts",
|
|
"components/**/*",
|
|
"lib/**/*.ts",
|
|
"app"
|
|
],
|
|
"exclude": ["node_modules", ".next"]
|
|
}
|