mirror of
				https://github.com/aleleba/create-node-ts-graphql-server.git
				synced 2025-10-30 05:30:47 -06:00 
			
		
		
		
	PR-780243: Adding type to webpack files.
This commit is contained in:
		| @@ -8,7 +8,7 @@ import { resolveTsAliases } from 'resolve-ts-aliases'; | ||||
| import { deFaultValues } from './config'; | ||||
|  | ||||
| const ROOT_DIR = path.resolve(__dirname); | ||||
| const resolvePath = (...args) => path.resolve(ROOT_DIR, ...args); | ||||
| const resolvePath = (...args: string[]) => path.resolve(ROOT_DIR, ...args); | ||||
| const BUILD_DIR = resolvePath('build'); | ||||
| const alias = resolveTsAliases(path.resolve('tsconfig.json')); | ||||
|  | ||||
|   | ||||
| @@ -8,7 +8,7 @@ import { resolveTsAliases } from 'resolve-ts-aliases'; | ||||
| import { deFaultValues } from './config'; | ||||
|  | ||||
| const ROOT_DIR = path.resolve(__dirname); | ||||
| const resolvePath = (...args) => path.resolve(ROOT_DIR, ...args); | ||||
| const resolvePath = (...args: string[]) => path.resolve(ROOT_DIR, ...args); | ||||
| const BUILD_DIR = resolvePath('build'); | ||||
| const alias = resolveTsAliases(path.resolve('tsconfig.json')); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user