mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-06 01:25:28 +00:00
bundle custom type defs in root
This commit is contained in:
parent
eb8a687895
commit
a805fda1a5
@ -61,7 +61,7 @@
|
|||||||
},
|
},
|
||||||
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
||||||
"typeRoots": [ /* List of folders to include type definitions from. */
|
"typeRoots": [ /* List of folders to include type definitions from. */
|
||||||
"@types",
|
"../@types",
|
||||||
"node_modules/@types",
|
"node_modules/@types",
|
||||||
"../node_modules/@types",
|
"../node_modules/@types",
|
||||||
],
|
],
|
||||||
|
|||||||
@ -49,8 +49,12 @@
|
|||||||
// "paths": { }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
// "paths": { }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
||||||
// "rootDirs": [".", "../database"], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
// "rootDirs": [".", "../database"], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
||||||
/* List of folders to include type definitions from. */
|
/* List of folders to include type definitions from. */
|
||||||
"typeRoots": ["./node_modules/@types", "../node_modules/@types"],
|
"typeRoots": [
|
||||||
// "types": ["bun-types"], /* Type declaration files to be included in compilation. */
|
"./node_modules/@types",
|
||||||
|
"../node_modules/@types",
|
||||||
|
"../@types"
|
||||||
|
],
|
||||||
|
// "types": ["bun-types", "../@types"], /* Type declaration files to be included in compilation. */
|
||||||
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
||||||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
||||||
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
|
||||||
|
|||||||
5
database/@types/random-bigint/index.d.ts
vendored
5
database/@types/random-bigint/index.d.ts
vendored
@ -1,5 +0,0 @@
|
|||||||
|
|
||||||
declare module 'random-bigint' {
|
|
||||||
function random(bits: number, cb?: (err: Error, num: BigInt) => void): BigInt
|
|
||||||
export = random
|
|
||||||
}
|
|
||||||
@ -50,7 +50,11 @@
|
|||||||
//"@/*": ["src/*"], /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
//"@/*": ["src/*"], /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
||||||
//},
|
//},
|
||||||
// "rootDirs": [".", "../database"], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
// "rootDirs": [".", "../database"], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
||||||
"typeRoots": ["node_modules/@types"], /* List of folders to include type definitions from. */
|
"typeRoots": [
|
||||||
|
"./node_modules/@types",
|
||||||
|
"../node_modules/@types",
|
||||||
|
"../@types"
|
||||||
|
],
|
||||||
// "types": ["node"], /* Type declaration files to be included in compilation. */
|
// "types": ["node"], /* Type declaration files to be included in compilation. */
|
||||||
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
||||||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
||||||
|
|||||||
@ -52,9 +52,9 @@
|
|||||||
},
|
},
|
||||||
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
||||||
"typeRoots": [ /* List of folders to include type definitions from. */
|
"typeRoots": [ /* List of folders to include type definitions from. */
|
||||||
"src/dht_node/@types",
|
|
||||||
"node_modules/@types",
|
"node_modules/@types",
|
||||||
"../node_modules/@types"
|
"../node_modules/@types",
|
||||||
|
"../@types"
|
||||||
],
|
],
|
||||||
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
||||||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
||||||
|
|||||||
@ -64,6 +64,7 @@
|
|||||||
"typeRoots": [ /* List of folders to include type definitions from. */
|
"typeRoots": [ /* List of folders to include type definitions from. */
|
||||||
"node_modules/@types",
|
"node_modules/@types",
|
||||||
"../node_modules/@types",
|
"../node_modules/@types",
|
||||||
|
"../@types"
|
||||||
],
|
],
|
||||||
// "types": [], /* Type declaration files to be included in compilation. */
|
// "types": [], /* Type declaration files to be included in compilation. */
|
||||||
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user