51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifier": true
|
|
},
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"moduleResolution": "NodeNext", // or "node16"/"nodenext"
|
|
"module": "NodeNext", // or "node16"/"nodenext"
|
|
|
|
"declaration": true,
|
|
// "rootDir": "../",
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
// "allowImportingTsExtensions": true,
|
|
// "noEmit": true,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@shared/*": ["../shared/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
"tests",
|
|
"tests-old/utils.ts",
|
|
"tests-old/global.ts",
|
|
"../shared/db/allTables.ts",
|
|
"../shared/db/apiKeysTable.ts",
|
|
"../shared/db/chatResultsTable.ts",
|
|
"../shared/db/cusTable.ts",
|
|
"../shared/db/entitlementsTable.ts",
|
|
"../shared/db/featuresTable.ts",
|
|
"../shared/db/invoicesTable.ts",
|
|
"../shared/db/orgTable.ts",
|
|
"../shared/db/pricesTable.ts",
|
|
"../shared/db/productsTable.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../shared"
|
|
}
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|